From 5b3e2e268d6e0e30a135b6b40ae71e9245f510f1 Mon Sep 17 00:00:00 2001 From: Stefan Vukovic Date: Mon, 22 Jan 2024 13:09:53 +0100 Subject: [PATCH] fix typo --- ext/js/display/display-profile-selection.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/js/display/display-profile-selection.js b/ext/js/display/display-profile-selection.js index ff4fe6bfb4..b61b49d59d 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); } /**