diff options
Diffstat (limited to 'ext/js/display/search-display-controller.js')
| -rw-r--r-- | ext/js/display/search-display-controller.js | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/js/display/search-display-controller.js b/ext/js/display/search-display-controller.js index ed2061e2..6767dce7 100644 --- a/ext/js/display/search-display-controller.js +++ b/ext/js/display/search-display-controller.js @@ -322,7 +322,7 @@ export class SearchDisplayController {       */      async _onProfileSelectChange(event) {          const node = /** @type {HTMLInputElement} */ (event.currentTarget); -        const value = parseInt(node.value, 10); +        const value = Number.parseInt(node.value, 10);          const optionsFull = await this._display.application.api.optionsGetFull();          if (typeof value === 'number' && Number.isFinite(value) && value >= 0 && value <= optionsFull.profiles.length) {              this._setPrimaryProfileIndex(value); @@ -574,8 +574,7 @@ export class SearchDisplayController {              case 'select':                  return true;          } -        if (element instanceof HTMLElement && element.isContentEditable) { return true; } -        return false; +        return element instanceof HTMLElement && !!element.isContentEditable;      }      /**  |