mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-29 20:20:57 +00:00
feat(accessibility): Add option to disable loading phrases (#745)
This commit is contained in:
parent
d179b3aae4
commit
afc30e314f
6 changed files with 31 additions and 3 deletions
|
|
@ -399,7 +399,11 @@ export const App = ({
|
|||
) : (
|
||||
<>
|
||||
<LoadingIndicator
|
||||
currentLoadingPhrase={currentLoadingPhrase}
|
||||
currentLoadingPhrase={
|
||||
config.getAccessibility()?.disableLoadingPhrases
|
||||
? undefined
|
||||
: currentLoadingPhrase
|
||||
}
|
||||
elapsedTime={elapsedTime}
|
||||
/>
|
||||
<Box
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue