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 e79942b commit a908ba4Copy full SHA for a908ba4
source/_patterns/01-elements/radio/radio.hbs
@@ -1,9 +1,10 @@
1
<input type="radio"
2
- class="elm-radio {{ styleModifier }}"{{#if name}} name="{{ name }}"{{/if }}
+ class="elm-radio {{ styleModifier }}"
3
+ {{#if name}} name="{{ name }}"{{/if }}
4
id="{{ id }}"
5
{{#if checked}} checked{{/if }}
6
{{#if disabled}} disabled{{/if }}
7
value="{{ value }}"
8
{{#if describedbyid }} aria-describedby="{{ describedbyid }}"{{/if }}
- {{#if invalid}}aria-invalid="true"{{/if }}>
9
+ {{#if invalid}} aria-invalid="true"{{/if }}>
10
<label class="elm-label" for="{{ id }}">{{ label }}</label>
0 commit comments