Skip to content

Commit

Permalink
Yet more linter findings on attribute ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuelsmann committed Nov 24, 2023
1 parent 24b1afa commit 4b5a1bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UI/src/components/ConfigTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ function u(relURL) {
<tbody class="dynatableData" >
<ConfigTableRow
v-for="item in items"
:defaultSelectable="props.defaultSelectable"
:id="item[props.storeId]"
:isDefault="item.default"
:key="item[props.storeId]"
:defaultSelectable="props.defaultSelectable"
:isDefault="item.default"
:columns="props.columns"
:deletable="props.deletable"
:editingId="editingId"
Expand Down

0 comments on commit 4b5a1bf

Please sign in to comment.