-
+
Replacing{' '}
{' '}
release plan with
- {planPreview.name}
+ {planPreview.name}
diff --git a/frontend/src/component/changeRequest/ChangeRequest/Changes/Change/SegmentChangeDetails.tsx b/frontend/src/component/changeRequest/ChangeRequest/Changes/Change/SegmentChangeDetails.tsx
index f2e717b891..0c9d98e062 100644
--- a/frontend/src/component/changeRequest/ChangeRequest/Changes/Change/SegmentChangeDetails.tsx
+++ b/frontend/src/component/changeRequest/ChangeRequest/Changes/Change/SegmentChangeDetails.tsx
@@ -77,6 +77,7 @@ export const SegmentChangeDetails: FC<{
({
color: theme.palette.error.main,
})}
@@ -112,7 +113,9 @@ export const SegmentChangeDetails: FC<{
/>
- Editing segment
+
+ Editing segment
+
{actionsWithTabs}
diff --git a/frontend/src/component/changeRequest/ChangeRequest/Changes/Change/StrategyChange.tsx b/frontend/src/component/changeRequest/ChangeRequest/Changes/Change/StrategyChange.tsx
index 5386fec308..9df84629c5 100644
--- a/frontend/src/component/changeRequest/ChangeRequest/Changes/Change/StrategyChange.tsx
+++ b/frontend/src/component/changeRequest/ChangeRequest/Changes/Change/StrategyChange.tsx
@@ -84,18 +84,30 @@ const EditHeader: FC<{
willBeDisabled?: boolean;
}> = ({ wasDisabled = false, willBeDisabled = false }) => {
if (wasDisabled && willBeDisabled) {
- return Editing strategy;
+ return (
+
+ Editing strategy
+
+ );
}
if (!wasDisabled && willBeDisabled) {
- return Editing strategy;
+ return (
+
+ Editing strategy
+
+ );
}
if (wasDisabled && !willBeDisabled) {
- return Editing strategy;
+ return (
+
+ Editing strategy
+
+ );
}
- return Editing strategy;
+ return Editing strategy;
};
const hasDiff = (object: unknown, objectToCompare: unknown) =>
@@ -125,6 +137,7 @@ const DeleteStrategy: FC<{
({
color: theme.palette.error.main,
})}