We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b07b896 commit cbf23d1Copy full SHA for cbf23d1
packages/main/src/Table.hbs
@@ -19,13 +19,15 @@
19
>
20
{{#if isMultiSelect}}
21
<th class="ui5-table-select-all-column" role="presentation" aria-hidden="true">
22
- <ui5-checkbox class="ui5-table-select-all-checkbox"
23
- ?checked="{{_allRowsSelected}}"
24
- @ui5-change="{{_selectAll}}"
25
- aria-label="{{ariaLabelSelectAllText}}"
26
- tabindex="-1"
27
- >
28
- </ui5-checkbox>
+ {{#if rows.length}}
+ <ui5-checkbox class="ui5-table-select-all-checkbox"
+ ?checked="{{_allRowsSelected}}"
+ @ui5-change="{{_selectAll}}"
+ aria-label="{{ariaLabelSelectAllText}}"
+ tabindex="-1"
+ >
29
+ </ui5-checkbox>
30
+ {{/if}}
31
</th>
32
{{/if}}
33
0 commit comments