Skip to content

Commit bf81e6a

Browse files
committed
fix
1 parent c6f6cd9 commit bf81e6a

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

src/components/Ui/Infobox/Infobox.module.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
.infobox {
22
display: flex;
33
align-items: center;
4-
border-radius: 12px;
4+
border-radius: 1rem;
55
padding: 1rem;
66
margin: 0;
77
overflow: hidden;
88
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
99
margin-bottom: 2rem;
10-
border-radius: 15px;
1110
}
1211

1312
.icon {
1413
flex-shrink: 0;
1514
width: 1.5rem;
1615
height: 1.5rem;
1716
color: var(--sapBackgroundColor);
18-
margin-right: 0.75rem;
17+
margin-right: 1rem;
1918
}
2019

2120
.content {
2221
flex-grow: 1;
2322
padding-right: 0.5rem;
23+
color: var(--sapBackgroundColor);
2424
}
2525

2626
.full-width {

src/components/Ui/Infobox/Infobox.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import cx from 'clsx';
33
import { Icon } from '@ui5/webcomponents-react';
44

55
import styles from './Infobox.module.css';
6-
import { useTheme } from '../../../hooks/useTheme';
76

87
interface LabelProps {
98
id?: string;

src/components/Wizards/CreateManagedControlPlane/CreateManagedControlPlaneWizardContainer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ export const CreateManagedControlPlaneWizardContainer: FC<CreateManagedControlPl
159159
},
160160
mode: 'onChange',
161161
});
162-
// no-op: original snapshot for summarize is now built from current form state
162+
163163
useEffect(() => {
164164
if (selectedStep !== 'metadata') return;
165165

@@ -364,7 +364,7 @@ export const CreateManagedControlPlaneWizardContainer: FC<CreateManagedControlPl
364364
return false;
365365
}
366366
},
367-
[selectedStep, isValid, hasMissingComponentVersions],
367+
[selectedStep, isValid, hasMissingComponentVersions, isEditMode],
368368
);
369369

370370
const onBackClick = useCallback(() => {

0 commit comments

Comments
 (0)