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 c4f836c commit 31ffc5bCopy full SHA for 31ffc5b
src/components-examples/material/table/table-selection/table-selection-example.ts
@@ -55,7 +55,7 @@ export class TableSelectionExample {
55
/** The label for the checkbox on the passed row */
56
checkboxLabel(row?: PeriodicElement): string {
57
if (!row) {
58
- return `${this.isAllSelected() ? 'select' : 'deselect'} all`;
+ return `${this.isAllSelected() ? 'deselect' : 'select'} all`;
59
}
60
return `${this.selection.isSelected(row) ? 'deselect' : 'select'} row ${row.position + 1}`;
61
0 commit comments