mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-30 18:17:55 +00:00
Eslint prefer-const (#17864)
* adds prefer-const to eslint config and runs fixer * reverts unintended change
This commit is contained in:
@@ -47,7 +47,7 @@ export default Component.extend({
|
||||
this.toggleProperty('showValue');
|
||||
},
|
||||
updateValue(e) {
|
||||
let value = e.target.value;
|
||||
const value = e.target.value;
|
||||
this.set('value', value);
|
||||
this.onChange(value);
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user