summaryrefslogtreecommitdiff
path: root/ext/js/pages/settings/scan-inputs-simple-controller.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2024-02-19 07:30:17 -0500
committerGitHub <noreply@github.com>2024-02-19 12:30:17 +0000
commit2da866f982930c76d2317a3be426410683ecf5a2 (patch)
treee77ce545177ba398068cb63037096a56dea04e2c /ext/js/pages/settings/scan-inputs-simple-controller.js
parent65fa65fc7765bc9a6557d3ce6f8bdcef5b5e0cf7 (diff)
Update eslint rules (#710)
Diffstat (limited to 'ext/js/pages/settings/scan-inputs-simple-controller.js')
-rw-r--r--ext/js/pages/settings/scan-inputs-simple-controller.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/js/pages/settings/scan-inputs-simple-controller.js b/ext/js/pages/settings/scan-inputs-simple-controller.js
index b09a3a76..53a52922 100644
--- a/ext/js/pages/settings/scan-inputs-simple-controller.js
+++ b/ext/js/pages/settings/scan-inputs-simple-controller.js
@@ -70,7 +70,7 @@ export class ScanInputsSimpleController {
*/
_onScanInputsChanged({source}) {
if (source === this) { return; }
- this.refresh();
+ void this.refresh();
}
/**
@@ -112,7 +112,7 @@ export class ScanInputsSimpleController {
onMiddleMouseButtonScanChange(e) {
const element = /** @type {HTMLInputElement} */ (e.currentTarget);
const middleMouseSupported = element.checked;
- this._setMiddleMouseSuppported(middleMouseSupported);
+ void this._setMiddleMouseSuppported(middleMouseSupported);
}
/**
@@ -123,7 +123,7 @@ export class ScanInputsSimpleController {
const mainScanKey = element.value;
if (mainScanKey === 'other') { return; }
const mainScanInputs = (mainScanKey === 'none' ? [] : [mainScanKey]);
- this._setMainScanInputs(mainScanInputs);
+ void this._setMainScanInputs(mainScanInputs);
}
/**