1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-06-18 01:18:23 +02:00

fix: stale flag status chip (#9821)

This commit is contained in:
Tymoteusz Czech 2025-04-23 14:02:58 +02:00 committed by GitHub
parent 31dbef84f6
commit b179f86fb7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -382,7 +382,6 @@ export const FeatureViewHeader: FC<Props> = ({ feature }) => {
<Typography variant='h1'>{feature.name}</Typography> <Typography variant='h1'>{feature.name}</Typography>
<FeatureCopyName name={feature.name} /> <FeatureCopyName name={feature.name} />
</StyledTitle> </StyledTitle>
<FeatureStatusChip stale={true} />
{feature.stale ? ( {feature.stale ? (
<FeatureStatusChip stale={true} /> <FeatureStatusChip stale={true} />
) : null} ) : null}