aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/form-elements/radios/radio-buttons-group.component.html.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/angular/form-elements/radios/radio-buttons-group.component.html.ts')
-rw-r--r--src/angular/form-elements/radios/radio-buttons-group.component.html.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/angular/form-elements/radios/radio-buttons-group.component.html.ts b/src/angular/form-elements/radios/radio-buttons-group.component.html.ts
index 28a27af..a0026f2 100644
--- a/src/angular/form-elements/radios/radio-buttons-group.component.html.ts
+++ b/src/angular/form-elements/radios/radio-buttons-group.component.html.ts
@@ -1,7 +1,7 @@
-export default `
+export const template = `
<label class='sdc-radio-group__legend'>{{legend}}</label>
<div class='sdc-radio-group__radios {{direction}}'>
- <template *ngFor="let item of options.items">
+ <div *ngFor="let item of options.items">
<div class="sdc-radio">
<label class="sdc-radio__animation-wrapper" SdcRippleClickAnimation [rippleClickDisabled]="disabled">
<input class="sdc-radio__input"
@@ -15,6 +15,6 @@ export default `
<span class="sdc-radio__label">{{ item.label }}</span>
</label>
</div>
- </template>
+ </div>
</div>
`;