Skip to content

Commit decf116

Browse files
committed
Move break to where it belongs
1 parent 68ee3c8 commit decf116

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/reactComponents/FileManageModal.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ export default function FileManageModal(props: FileManageModalProps) {
138138
props.setAlertErrorMessage(t('FAILED_TO_RENAME_MODULE'));
139139
setRenameModalOpen(false);
140140
}
141-
142141
};
143142

144143
/** Handles copying a module. */
@@ -457,13 +456,13 @@ export default function FileManageModal(props: FileManageModalProps) {
457456
onDoubleClick: () => handleRowDoubleClick(record),
458457
})}
459458
/>
459+
<br />
460460
<div style={{
461461
marginBottom: 16,
462462
border: `1px solid ${token.colorBorder}`,
463463
borderRadius: '6px',
464464
padding: '12px',
465465
}}>
466-
<br />
467466
<ClassNameComponent
468467
tabType={props.tabType}
469468
newItemName={newItemName}

0 commit comments

Comments
 (0)