Skip to content

Commit

Permalink
add condition to hide tbodyCopy until this.dataLoading is truthy
Browse files Browse the repository at this point in the history
  • Loading branch information
muditchoudhary committed Sep 5, 2023
1 parent 07446e1 commit 16f0ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kolibri/core/assets/src/views/CoreTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
createElement('table', { class: 'core-table' }, [
...(this.$slots.default || []),
theadEl,
tbodyCopy,
this.dataLoading ? null: tbodyCopy,
]),
dataStatusEl,
]);
Expand Down

0 comments on commit 16f0ade

Please sign in to comment.