[accessibility-3549715]:[Screen reader - Cosmos DB Query Copilot - Query Faster with Copilot>Enable Query Advisor]: Screen reader does not announce status information which appears on invoking the 'Send' button.
This commit is contained in:
parent
8800f2ef25
commit
edd65d198b
|
@ -711,31 +711,31 @@ export const QueryCopilotPromptbar: React.FC<QueryCopilotPromptProps> = ({
|
||||||
<span role="alert" className="screenReaderOnly" aria-label={getAriaLabel()} />
|
<span role="alert" className="screenReaderOnly" aria-label={getAriaLabel()} />
|
||||||
)}
|
)}
|
||||||
{isGeneratingQuery && (
|
{isGeneratingQuery && (
|
||||||
<ProgressIndicator
|
<ProgressIndicator
|
||||||
label="Thinking..."
|
label="Thinking..."
|
||||||
ariaLabel={getAriaLabel()}
|
ariaLabel={getAriaLabel()}
|
||||||
barHeight={4}
|
barHeight={4}
|
||||||
styles={{
|
styles={{
|
||||||
root: {
|
root: {
|
||||||
fontSize: 12,
|
fontSize: 12,
|
||||||
width: "100%",
|
width: "100%",
|
||||||
bottom: 0,
|
bottom: 0,
|
||||||
},
|
},
|
||||||
itemName: {
|
itemName: {
|
||||||
padding: "0px 8px",
|
padding: "0px 8px",
|
||||||
},
|
},
|
||||||
itemProgress: {
|
itemProgress: {
|
||||||
borderBottomLeftRadius: 8,
|
borderBottomLeftRadius: 8,
|
||||||
borderBottomRightRadius: 8,
|
borderBottomRightRadius: 8,
|
||||||
padding: 0,
|
padding: 0,
|
||||||
},
|
},
|
||||||
progressBar: {
|
progressBar: {
|
||||||
backgroundImage:
|
backgroundImage:
|
||||||
"linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(24, 90, 189) 35%, rgb(71, 207, 250) 70%, rgb(180, 124, 248) 92%, rgba(0, 0, 0, 0))",
|
"linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(24, 90, 189) 35%, rgb(71, 207, 250) 70%, rgb(180, 124, 248) 92%, rgba(0, 0, 0, 0))",
|
||||||
animationDuration: "5s",
|
animationDuration: "5s",
|
||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</Stack>
|
</Stack>
|
||||||
<IconButton
|
<IconButton
|
||||||
|
|
Loading…
Reference in New Issue