Skip to content

Commit 7f8df5e

Browse files
committed
Fix an issue with the default-data-table-content-body component
It seems we accidentally prefixed a block variable with `this` when resolving some deprecation warnings.
1 parent b7891f6 commit 7f8df5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addon/components/au-data-table/default-data-table-content-body.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
{{#each this.otherColumns as |field|}}
1414
<td>
1515
{{! This should be based on the type of the field }}
16-
{{get this.item this.field}}
16+
{{get this.item field}}
1717
</td>
1818
{{/each}}
1919
{{yield}}

0 commit comments

Comments
 (0)