mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-09 00:19:13 +08:00
fix tooltip wording
This commit is contained in:
parent
c622b0cf02
commit
880a2e4bfa
@ -389,7 +389,9 @@ export const TestingModule = ({
|
||||
tooltip={
|
||||
<TooltipNote
|
||||
note={
|
||||
isRunning ? "Can't clear statuses while running tests" : 'Clear all statuses'
|
||||
isRunning
|
||||
? "Can't clear statuses while tests are running"
|
||||
: 'Clear all statuses'
|
||||
}
|
||||
/>
|
||||
}
|
||||
@ -404,7 +406,9 @@ export const TestingModule = ({
|
||||
}}
|
||||
disabled={isRunning}
|
||||
aria-label={
|
||||
isRunning ? "Can't clear statuses while running tests" : 'Clear all statuses'
|
||||
isRunning
|
||||
? "Can't clear statuses while tests are running"
|
||||
: 'Clear all statuses'
|
||||
}
|
||||
>
|
||||
<SweepIcon />
|
||||
|
Loading…
x
Reference in New Issue
Block a user