From 39ea53ffa7aa51abd05996697a722a8a11eb39a2 Mon Sep 17 00:00:00 2001 From: StefanVukovic99 Date: Sat, 27 Jan 2024 10:06:57 +0100 Subject: fix typo (#557) --- ext/js/display/display-profile-selection.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/js/display/display-profile-selection.js') 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); } /** -- cgit v1.2.3