mirror of
https://github.com/Unleash/unleash.git
synced 2025-08-23 13:46:45 +02:00
naming again
This commit is contained in:
parent
59fe3ccf47
commit
b8b645f92c
@ -9,14 +9,17 @@ import { formatStrategyName } from '../../../../../../utils/strategyNames.tsx';
|
|||||||
import type { IFeatureStrategy } from 'interfaces/strategy.ts';
|
import type { IFeatureStrategy } from 'interfaces/strategy.ts';
|
||||||
import { Tab, TabList, TabPanel, Tabs } from '../ChangeTabComponents.tsx';
|
import { Tab, TabList, TabPanel, Tabs } from '../ChangeTabComponents.tsx';
|
||||||
import { useUiFlag } from 'hooks/useUiFlag.ts';
|
import { useUiFlag } from 'hooks/useUiFlag.ts';
|
||||||
import { ChangeItemInfo, ChangeItemWrapper } from '../Change.styles.tsx';
|
import {
|
||||||
|
ChangeItemInfo as NewChangeItemInfo,
|
||||||
|
ChangeItemWrapper,
|
||||||
|
} from '../Change.styles.tsx';
|
||||||
|
|
||||||
const LegacyChangeItemInfo = styled(Box)({
|
const ChangeItemInfo = styled(Box)({
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
flexDirection: 'column',
|
flexDirection: 'column',
|
||||||
});
|
});
|
||||||
|
|
||||||
const ChangeContent = styled(LegacyChangeItemInfo)(({ theme }) => ({
|
const ChangeContent = styled(ChangeItemInfo)(({ theme }) => ({
|
||||||
gap: theme.spacing(2),
|
gap: theme.spacing(2),
|
||||||
}));
|
}));
|
||||||
|
|
||||||
@ -98,9 +101,9 @@ export const EnvironmentStrategyExecutionOrder = ({
|
|||||||
<Tabs>
|
<Tabs>
|
||||||
<ChangeContent>
|
<ChangeContent>
|
||||||
<ChangeItemWrapper>
|
<ChangeItemWrapper>
|
||||||
<ChangeItemInfo>
|
<NewChangeItemInfo>
|
||||||
Updating strategy execution order to
|
Updating strategy execution order to
|
||||||
</ChangeItemInfo>
|
</NewChangeItemInfo>
|
||||||
<div>
|
<div>
|
||||||
<TabList>
|
<TabList>
|
||||||
<Tab>Change</Tab>
|
<Tab>Change</Tab>
|
||||||
@ -133,7 +136,7 @@ export const EnvironmentStrategyExecutionOrder = ({
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<LegacyChangeItemInfo>
|
<ChangeItemInfo>
|
||||||
<StyledChangeHeader>
|
<StyledChangeHeader>
|
||||||
<TooltipLink
|
<TooltipLink
|
||||||
tooltip={
|
tooltip={
|
||||||
@ -161,6 +164,6 @@ export const EnvironmentStrategyExecutionOrder = ({
|
|||||||
</StyledStrategyContainer>
|
</StyledStrategyContainer>
|
||||||
))}
|
))}
|
||||||
</StyledStrategyExecutionWrapper>
|
</StyledStrategyExecutionWrapper>
|
||||||
</LegacyChangeItemInfo>
|
</ChangeItemInfo>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user