Skip to content

Commit

Permalink
Added: enable single row loading state from manager
Browse files Browse the repository at this point in the history
  • Loading branch information
Miexil committed Nov 13, 2024
1 parent 8264926 commit 9c48f98
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion addon/components/hyper-table/index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
{{/each}}
{{else}}
{{#each this._collection as |item|}}
<HyperTable::Cell @item={{item}} @manager={{this.manager}} selection={{true}}>
<HyperTable::Cell @item={{item}} @manager={{this.manager}} selection={{true}} @loading={{item.loading}}>
<OSS::Checkbox
@checked={{item.selected}}
@size="sm"
Expand Down Expand Up @@ -236,6 +236,7 @@
@column={{column}}
@manager={{this.manager}}
@renderingComponent={{cell-rendering-inferer column}}
@loading={{item.loading}}
/>
</div>
{{/each}}
Expand Down Expand Up @@ -276,6 +277,7 @@
@column={{column}}
@manager={{this.manager}}
@renderingComponent={{cell-rendering-inferer column}}
@loading={{item.loading}}
/>
</div>
{{/each}}
Expand Down

0 comments on commit 9c48f98

Please sign in to comment.