Skip to content

Commit e2a1882

Browse files
[autofix.ci] apply automated fixes
1 parent ceb16ae commit e2a1882

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

apps/dokploy/components/dashboard/application/general/generic/save-git-provider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ export const SaveGitProvider = ({ applicationId }: Props) => {
299299
</FormItem>
300300
)}
301301
/>
302-
302+
303303
<FormField
304304
control={form.control}
305305
name="enableSubmodules"

apps/dokploy/components/dashboard/compose/general/compose-file-editor.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,15 +83,15 @@ export const ComposeFileEditor = ({ composeId }: Props) => {
8383
// Add keyboard shortcut for Ctrl+S/Cmd+S
8484
useEffect(() => {
8585
const handleKeyDown = (e: KeyboardEvent) => {
86-
if ((e.ctrlKey || e.metaKey) && e.key === 's' && !isLoading) {
86+
if ((e.ctrlKey || e.metaKey) && e.key === "s" && !isLoading) {
8787
e.preventDefault();
8888
form.handleSubmit(onSubmit)();
8989
}
9090
};
9191

92-
document.addEventListener('keydown', handleKeyDown);
92+
document.addEventListener("keydown", handleKeyDown);
9393
return () => {
94-
document.removeEventListener('keydown', handleKeyDown);
94+
document.removeEventListener("keydown", handleKeyDown);
9595
};
9696
}, [form, onSubmit, isLoading]);
9797

0 commit comments

Comments
 (0)