mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-26 13:48:33 +02:00
Change wording from Unevaluated -> Not evaluated
This commit is contained in:
parent
b707360e4e
commit
88d59f41b7
@ -22,7 +22,7 @@ export const FeatureStrategyItem = ({
|
||||
const label =
|
||||
result.evaluationStatus === 'incomplete' ||
|
||||
result.evaluationStatus === 'unevaluated'
|
||||
? 'Unevaluated'
|
||||
? 'Not evaluated'
|
||||
: result.enabled
|
||||
? 'True'
|
||||
: 'False';
|
||||
@ -33,12 +33,14 @@ export const FeatureStrategyItem = ({
|
||||
strategyHeaderLevel={4}
|
||||
className={className}
|
||||
headerItemsLeft={
|
||||
<PlaygroundResultChip
|
||||
tabindex={-1}
|
||||
showIcon={false}
|
||||
enabled={result.enabled}
|
||||
label={label}
|
||||
/>
|
||||
strategy.disabled ? null : (
|
||||
<PlaygroundResultChip
|
||||
tabindex={-1}
|
||||
showIcon={false}
|
||||
enabled={result.enabled}
|
||||
label={label}
|
||||
/>
|
||||
)
|
||||
}
|
||||
>
|
||||
<StrategyExecution strategyResult={strategy} input={input} />
|
||||
|
Loading…
Reference in New Issue
Block a user