Skip to content

Commit

Permalink
fix typo (#557)
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanVukovic99 authored Jan 27, 2024
1 parent 7a142bb commit 39ea53f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ext/js/display/display-profile-selection.js
Original file line number Diff line number Diff line change
Expand Up @@ -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} */
Expand Down Expand Up @@ -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);
}

/**
Expand Down

0 comments on commit 39ea53f

Please sign in to comment.