1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

disabled property needs to be a boolean

This commit is contained in:
Christopher Kolstad 2021-10-11 15:14:33 +02:00
parent 55c9c9a2e0
commit 31f8b46cd2

View File

@ -105,7 +105,7 @@ const FeatureStrategiesEnvironments = () => {
return featureCache?.environments?.map((env, index) => {
return (
<Tab
disabled={configureNewStrategy}
disabled={!!configureNewStrategy}
key={`${env.name}_${index}`}
label={env.name}
{...a11yProps(index)}