Skip to content

Commit

Permalink
chore: Conform to code linting
Browse files Browse the repository at this point in the history
  • Loading branch information
koerismo committed Jul 30, 2024
1 parent 537beae commit 29ae400
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client/gameselector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ export class GameSelector {
btn.append(icon);

const name = document.createElement('span');
name.innerText = game.name;
name.textContent = game.name;
btn.append(name);

this.gameListElement.appendChild(btn);
this.gameListElement.append(btn);
}

this.updateSelected();
Expand Down

0 comments on commit 29ae400

Please sign in to comment.