mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
A11y: Add missing aria labels in Loki QueryEditor (#42664)
* Loki: Add missing aria-label * Update text * Update text
This commit is contained in:
parent
64cf0aa813
commit
698f452e0d
@ -149,7 +149,13 @@ export function LokiOptionFields(props: LokiOptionFieldsProps) {
|
||||
'Resolution 1/1 sets step parameter of Loki metrics range queries such that each pixel corresponds to one data point. For better performance, lower resolutions can be picked. 1/2 only retrieves a data point for every other pixel, and 1/10 retrieves one data point per 10 pixels.'
|
||||
}
|
||||
>
|
||||
<Select isSearchable={false} onChange={onResolutionChange} options={RESOLUTION_OPTIONS} value={resolution} />
|
||||
<Select
|
||||
isSearchable={false}
|
||||
onChange={onResolutionChange}
|
||||
options={RESOLUTION_OPTIONS}
|
||||
value={resolution}
|
||||
aria-label="Select resolution"
|
||||
/>
|
||||
</InlineField>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user