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 2902e6a commit 047b3d8Copy full SHA for 047b3d8
src/radio/radio.component.ts
@@ -33,7 +33,7 @@ import { RadioChange } from "./radio-change.class";
33
[name]="name"
34
[id]="id"
35
[required]="required"
36
- [value]="value"
+ [attr.value]="value"
37
[attr.aria-labelledby]="ariaLabelledby"
38
(change)="onChange($event)"
39
(click)="onClick($event)">
@@ -86,7 +86,7 @@ export class Radio {
86
/**
87
* Used to set the `aria-label` attribute on the input label.
88
*/
89
- @Input() ariaLabel = "";
+ @Input() ariaLabel: string;
90
91
92
* Sets the HTML required attribute
@@ -95,7 +95,7 @@ export class Radio {
95
96
* The value of the `Radio`.
97
98
- @Input() value = "";
+ @Input() value;
99
100
* Set to `true` for a loading table.
101
0 commit comments