style: auto-fix linting issues
This commit is contained in:
parent
e59e14fdb6
commit
b3145c5c3e
1 changed files with 1 additions and 1 deletions
2
js/ui.js
2
js/ui.js
|
|
@ -3855,7 +3855,7 @@ export class UIRenderer {
|
|||
|
||||
rateCriticsEl.innerHTML = `<a href="${data.url}" target="_blank" style="color: var(--muted-foreground);">Critic Score: <span style="text-decoration: underline;">${data.critic.score}</span>, Based on ${data.critic.count} reviews</a>`;
|
||||
|
||||
if (data.critic.score == "NR") {
|
||||
if (data.critic.score == 'NR') {
|
||||
rateCriticsEl.innerHTML = `<a style="color: var(--muted-foreground);">Critic Score Not Available Yet</a>`;
|
||||
}
|
||||
rateUsersEl.innerHTML = `<a href="${data.url}" target="_blank" style="color: var(--muted-foreground);">User Score: <span style="text-decoration: underline;">${data.user.score}</span>, Based on ${data.user.count} reviews</a>`;
|
||||
|
|
|
|||
Loading…
Reference in a new issue