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 a035cd8 commit ebf8518Copy full SHA for ebf8518
src/webviews/webview-side/selectInputSettings/SelectInputSettingsPanel.tsx
@@ -142,8 +142,9 @@ export const SelectInputSettingsPanel: React.FC<ISelectInputSettingsPanelProps>
142
handleSelectTypeChange('from-options');
143
}
144
}}
145
- role="button"
+ role="radio"
146
tabIndex={0}
147
+ aria-checked={settings.selectType === 'from-options'}
148
>
149
<input
150
type="radio"
@@ -214,8 +215,9 @@ export const SelectInputSettingsPanel: React.FC<ISelectInputSettingsPanelProps>
214
215
handleSelectTypeChange('from-variable');
216
217
218
219
220
+ aria-checked={settings.selectType === 'from-variable'}
221
222
223
0 commit comments