mirror of
https://github.com/Unleash/unleash.git
synced 2025-08-04 13:48:56 +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 =
|
const label =
|
||||||
result.evaluationStatus === 'incomplete' ||
|
result.evaluationStatus === 'incomplete' ||
|
||||||
result.evaluationStatus === 'unevaluated'
|
result.evaluationStatus === 'unevaluated'
|
||||||
? 'Unevaluated'
|
? 'Not evaluated'
|
||||||
: result.enabled
|
: result.enabled
|
||||||
? 'True'
|
? 'True'
|
||||||
: 'False';
|
: 'False';
|
||||||
@ -33,12 +33,14 @@ export const FeatureStrategyItem = ({
|
|||||||
strategyHeaderLevel={4}
|
strategyHeaderLevel={4}
|
||||||
className={className}
|
className={className}
|
||||||
headerItemsLeft={
|
headerItemsLeft={
|
||||||
<PlaygroundResultChip
|
strategy.disabled ? null : (
|
||||||
tabindex={-1}
|
<PlaygroundResultChip
|
||||||
showIcon={false}
|
tabindex={-1}
|
||||||
enabled={result.enabled}
|
showIcon={false}
|
||||||
label={label}
|
enabled={result.enabled}
|
||||||
/>
|
label={label}
|
||||||
|
/>
|
||||||
|
)
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<StrategyExecution strategyResult={strategy} input={input} />
|
<StrategyExecution strategyResult={strategy} input={input} />
|
||||||
|
Loading…
Reference in New Issue
Block a user