diff options
author | StefanVukovic99 <stefanvukovic44@gmail.com> | 2024-01-27 10:06:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-27 09:06:57 +0000 |
commit | 39ea53ffa7aa51abd05996697a722a8a11eb39a2 (patch) | |
tree | 92ad6ecbacccdc6a53ce9eb443cf8a80a2b6bd78 | |
parent | 7a142bbafd6aa6ca5fe296ba3012158d8f2e75dc (diff) |
fix typo (#557)
-rw-r--r-- | ext/js/display/display-profile-selection.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/js/display/display-profile-selection.js b/ext/js/display/display-profile-selection.js index ff4fe6bf..b61b49d5 100644 --- a/ext/js/display/display-profile-selection.js +++ b/ext/js/display/display-profile-selection.js @@ -30,7 +30,7 @@ export class DisplayProfileSelection { /** @type {import('./display.js').Display} */ this._display = display; /** @type {HTMLElement} */ - this._profielList = querySelectorNotNull(document, '#profile-list'); + this._profileList = querySelectorNotNull(document, '#profile-list'); /** @type {HTMLButtonElement} */ this._profileButton = querySelectorNotNull(document, '#profile-button'); /** @type {HTMLElement} */ @@ -111,8 +111,8 @@ export class DisplayProfileSelection { fragment.appendChild(entry); this._eventListeners.addEventListener(radio, 'change', this._onProfileRadioChange.bind(this, i), false); } - this._profielList.textContent = ''; - this._profielList.appendChild(fragment); + this._profileList.textContent = ''; + this._profileList.appendChild(fragment); } /** |