File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,11 @@ import { TableRowSize } from "../table.types";
1818 *ngIf="!skeleton"
1919 inline="true"
2020 [name]="name"
21- [ariaLabel]="getLabel() | i18nReplace:getSelectionLabelValue(row) | async"
2221 [checked]="selected"
2322 [disabled]="disabled"
24- (checkedChange)="selectedChange.emit()">
23+ (checkedChange)="selectedChange.emit()"
24+ [hideLabel]="true">
25+ {{getLabel() | i18nReplace:getSelectionLabelValue(row) | async}}
2526 </cds-checkbox>
2627 `
2728} )
Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ import { Observable } from "rxjs";
1919 [checked]="checked"
2020 [indeterminate]="indeterminate"
2121 (checkedChange)="change.emit()"
22- [ariaLabel]="getAriaLabel() | async">
22+ [hideLabel]="true">
23+ {{getAriaLabel() | async}}
2324 </cds-checkbox>
2425 ` ,
2526 styles : [ `
You can’t perform that action at this time.
0 commit comments