DEV: Fix `no-unnecessary-curly-parens` lint rule (#24581)
This commit is contained in:
parent
103fab37e3
commit
cd69891b14
|
@ -1,8 +1,8 @@
|
||||||
<NumberField
|
<NumberField
|
||||||
@value={{this.value}}
|
@value={{this.value}}
|
||||||
@classNames="input-setting-integer"
|
@classNames="input-setting-integer"
|
||||||
@min={{(if this.setting.min this.setting.min null)}}
|
@min={{if this.setting.min this.setting.min null}}
|
||||||
@max={{(if this.setting.max this.setting.max null)}}
|
@max={{if this.setting.max this.setting.max null}}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<SettingValidationMessage @message={{this.validationMessage}} />
|
<SettingValidationMessage @message={{this.validationMessage}} />
|
||||||
|
|
|
@ -45,10 +45,10 @@
|
||||||
{{#if this.selectInactiveMode}}
|
{{#if this.selectInactiveMode}}
|
||||||
<Input
|
<Input
|
||||||
@type="checkbox"
|
@type="checkbox"
|
||||||
@checked={{(or
|
@checked={{or
|
||||||
(eq this.allInactiveSelected true)
|
(eq this.allInactiveSelected true)
|
||||||
(eq this.someInactiveSelected true)
|
(eq this.someInactiveSelected true)
|
||||||
)}}
|
}}
|
||||||
class="toggle-all-inactive"
|
class="toggle-all-inactive"
|
||||||
indeterminate={{this.someInactiveSelected}}
|
indeterminate={{this.someInactiveSelected}}
|
||||||
{{on "click" this.toggleAllInactive}}
|
{{on "click" this.toggleAllInactive}}
|
||||||
|
@ -89,7 +89,7 @@
|
||||||
<DButton
|
<DButton
|
||||||
class="btn btn-delete"
|
class="btn btn-delete"
|
||||||
@action={{this.deleteConfirmation}}
|
@action={{this.deleteConfirmation}}
|
||||||
@disabled={{(eq this.selectedCount 0)}}
|
@disabled={{eq this.selectedCount 0}}
|
||||||
>
|
>
|
||||||
{{d-icon "trash-alt"}}
|
{{d-icon "trash-alt"}}
|
||||||
Delete
|
Delete
|
||||||
|
|
Loading…
Reference in New Issue