I am trying to fix the aria-label issue in Splunk I have 3 dropdowns. After doing testing using Siteimprove I am facing this issue and also Splunk is not allowing aria-label in the label field
Can anyone suggest how to fix this issue?
<fieldset submitButton="false" autoRun="true"></fieldset>
<row>
<panel>
<input type="dropdown" token="area" searchWhenChanged="true">
<label>Area</label>
<choice value="*">ALL</choice>
<fieldForLabel>Area</fieldForLabel>
<fieldForValue>Area</fieldForValue>
<search>
<query>| loadjob savedsearch=Test "Area"</query>
<done>
<set token="enabledownload">none</set>
<unset token="display_details"></unset>
</done>
</search>
<default>*</default>
<initialValue>*</initialValue>
</input>
<input type="dropdown" token="dm" searchWhenChanged="true">
<label>DM</label>
<choice value="*">ALL</choice>
<fieldForLabel>DM/fieldForLabel>
<fieldForValue>DM</fieldForValue>
<search>
<query>| loadjob savedsearch=Test "DM"</query>
</search>
<change>
<set token="enabledownload">none</set>
<unset token="display_details"></unset>
</change>
<default>*</default>
<initialValue>*</initialValue>
</input>
<input type="dropdown" token="al" searchWhenChanged="true">
<label>AL</label>
<choice value="*">AL</choice>
<fieldForLabel>AL</fieldForLabel>
<fieldForValue>AL</fieldForValue>
<search>
<query>| loadjob savedsearch=Test "AL"</query>
</search>
<change>
<set token="enabledownload">none</set>
<unset token="display_details"></unset>
</change>
<default>*</default>
<initialValue>*</initialValue>
</input>
<input type="time" token="date_range" searchWhenChanged="true">
<label>Date Range</label>
<default>
<earliest>-24h@h</earliest>
<latest>now</latest>
</default>
<change>
<set token="enabledownload">none</set>
<unset token="display_details"></unset>
</change>
</input>
</panel>