Skip to content

Commit e6e8807

Browse files
fixed
1 parent c1b74d5 commit e6e8807

File tree

1 file changed

+2
-7
lines changed
  • src/ui/layouts/stackComponents/StackDetail/Configuration

1 file changed

+2
-7
lines changed

src/ui/layouts/stackComponents/StackDetail/Configuration/index.tsx

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ import {
44
Box,
55
EditField,
66
Paragraph,
7-
Row,
8-
Col,
97
Container,
108
} from '../../../../components';
119
import styles from './index.module.scss';
@@ -49,7 +47,7 @@ export const Configuration: React.FC<{ stackId: TId }> = ({ stackId }) => {
4947
<EditField
5048
disabled
5149
onChangeText={() => console.log('')}
52-
label="key"
50+
label="Key"
5351
optional={false}
5452
value={key}
5553
placeholder=""
@@ -75,10 +73,7 @@ export const Configuration: React.FC<{ stackId: TId }> = ({ stackId }) => {
7573
}
7674
if (typeof elementSchema === 'boolean') {
7775
return (
78-
<Box
79-
// marginVertical="md"
80-
style={{ width: '100%' }}
81-
>
76+
<Box marginBottom={'xl'} style={{ width: '100%' }}>
8277
<Box>
8378
<FlexBox.Row justifyContent="space-between">
8479
<Paragraph>{titleCase(elementName)}</Paragraph>

0 commit comments

Comments
 (0)