aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/form-elements/checkbox/checkbox.component.html.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/angular/form-elements/checkbox/checkbox.component.html.ts')
-rw-r--r--src/angular/form-elements/checkbox/checkbox.component.html.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/angular/form-elements/checkbox/checkbox.component.html.ts b/src/angular/form-elements/checkbox/checkbox.component.html.ts
index f4031db..3fdd53f 100644
--- a/src/angular/form-elements/checkbox/checkbox.component.html.ts
+++ b/src/angular/form-elements/checkbox/checkbox.component.html.ts
@@ -1,7 +1,7 @@
-export default `
+export const template = `
<div class="sdc-checkbox">
<label SdcRippleClickAnimation [rippleClickDisabled]="disabled">
- <input type="checkbox" class="sdc-checkbox__input" [ngModel]="checked" (ngModelChange)="toggleState($event)" [disabled]="disabled">
+ <input type="checkbox" class="sdc-checkbox__input" [ngModel]="checked" (ngModelChange)="toggleState($event)" [disabled]="disabled" [attr.data-tests-id]="testId">
<span class="sdc-checkbox__label">{{ label }}</span>
</label>
</div>