Skip to content

Commit 26f17ad

Browse files
FIX (frontend): Fix formatting
1 parent 8aae329 commit 26f17ad

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

frontend/src/features/databases/ui/edit/EditDatabaseBaseInfoComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export const EditDatabaseBaseInfoComponent = ({
8080
Cancel
8181
</Button>
8282
)}
83-
83+
8484
<Button
8585
type="primary"
8686
className={`${isShowCancelButton ? 'ml-1' : 'ml-auto'} mr-5`}

frontend/src/features/databases/ui/show/ShowDatabaseNotifiersComponent.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ export const ShowDatabaseNotifiersComponent = ({ database }: Props) => {
1616
database.notifiers.map((notifier) => (
1717
<div className="flex items-center" key={notifier.id}>
1818
<div>- {notifier.name}</div>
19-
<img src={getNotifierLogoFromType(notifier?.notifierType)} className="ml-1 h-4 w-4" />
19+
<img
20+
src={getNotifierLogoFromType(notifier?.notifierType)}
21+
className="ml-1 h-4 w-4"
22+
/>
2023
</div>
2124
))
2225
) : (

frontend/src/features/notifiers/ui/edit/notifiers/EditDiscordNotifierComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export function EditDiscordNotifierComponent({ notifier, setNotifier, setIsUnsav
1212
return (
1313
<>
1414
<div className="flex">
15-
<div className="min-w-[110px] max-w-[110px] pr-3">Channel webhook URL</div>
15+
<div className="max-w-[110px] min-w-[110px] pr-3">Channel webhook URL</div>
1616

1717
<div className="w-[250px]">
1818
<Input

0 commit comments

Comments
 (0)