Skip to content

Commit b7901c2

Browse files
committed
Change if (not condition) to unless condition
1 parent 24a6d0a commit b7901c2

File tree

1 file changed

+2
-2
lines changed
  • app/components/dependency-list

1 file changed

+2
-2
lines changed

app/components/dependency-list/row.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737

3838
{{#if (or (not @dependency.default_features) @dependency.features)}}
3939
<div local-class="features" data-test-features>
40-
{{#if (not @dependency.default_features)}}
40+
{{#unless @dependency.default_features}}
4141
default-features=false
42-
{{/if}}
42+
{{/unless}}
4343
{{#if @dependency.features}}
4444
features={{@dependency.features}}
4545
{{/if}}

0 commit comments

Comments
 (0)