mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-01 02:57:59 +00:00
Eslint prefer-const (#17864)
* adds prefer-const to eslint config and runs fixer * reverts unintended change
This commit is contained in:
@@ -6,7 +6,7 @@ export default Component.extend({
|
||||
layout,
|
||||
title: 'Vault Enterprise',
|
||||
featureName: computed('title', function () {
|
||||
let title = this.title;
|
||||
const title = this.title;
|
||||
return title === 'Vault Enterprise' ? 'this feature' : title;
|
||||
}),
|
||||
minimumEdition: 'Vault Enterprise',
|
||||
|
||||
Reference in New Issue
Block a user