Skip to content

Commit 4fa5d04

Browse files
committed
Pass function/site specifications empty
1 parent d81d166 commit 4fa5d04

File tree

20 files changed

+21
-21
lines changed

20 files changed

+21
-21
lines changed

src/routes/(console)/project-[region]-[project]/functions/create-function/deploy/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
commands: installCommand || undefined,
106106
scopes: selectedScopes?.length ? selectedScopes : undefined,
107107
providerSilentMode: false,
108-
specification: specification || undefined
108+
specification: undefined
109109
});
110110
111111
// Add domain

src/routes/(console)/project-[region]-[project]/functions/create-function/manual/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
enabled: true,
7373
entrypoint,
7474
commands: buildCommand,
75-
specification: specification || undefined
75+
specification: undefined
7676
});
7777
7878
// Add domain

src/routes/(console)/project-[region]-[project]/functions/create-function/repository-[repository]/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
providerBranch: branch,
109109
providerSilentMode: silentMode,
110110
providerRootDirectory: rootDir,
111-
specification: specification || undefined
111+
specification: undefined
112112
});
113113
114114
// Add domain

src/routes/(console)/project-[region]-[project]/functions/create-function/template-[template]/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
providerBranch: branch,
149149
providerSilentMode: silentMode,
150150
providerRootDirectory: rootDir,
151-
specification: specification || undefined
151+
specification: undefined
152152
});
153153
154154
// Add domain

src/routes/(console)/project-[region]-[project]/functions/function-[function]/settings/updateBuildCommand.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
providerBranch: func.providerBranch || undefined,
3737
providerSilentMode: func.providerSilentMode || undefined,
3838
providerRootDirectory: func.providerRootDirectory || undefined,
39-
specification: func.specification || undefined
39+
specification: undefined
4040
});
4141
4242
await invalidate(Dependencies.FUNCTION);

src/routes/(console)/project-[region]-[project]/functions/function-[function]/settings/updateEvents.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
providerBranch: $func.providerBranch || undefined,
4848
providerSilentMode: $func.providerSilentMode || undefined,
4949
providerRootDirectory: $func.providerRootDirectory || undefined,
50-
specification: $func.specification || undefined
50+
specification: undefined
5151
});
5252
await invalidate(Dependencies.FUNCTION);
5353
addNotification({

src/routes/(console)/project-[region]-[project]/functions/function-[function]/settings/updateLogging.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
providerBranch: func.providerBranch || undefined,
3838
providerSilentMode: func.providerSilentMode || undefined,
3939
providerRootDirectory: func.providerRootDirectory || undefined,
40-
specification: func.specification || undefined
40+
specification: undefined
4141
});
4242
await invalidate(Dependencies.FUNCTION);
4343
addNotification({

src/routes/(console)/project-[region]-[project]/functions/function-[function]/settings/updateName.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
providerBranch: $func.providerBranch || undefined,
4343
providerSilentMode: $func.providerSilentMode || undefined,
4444
providerRootDirectory: $func.providerRootDirectory || undefined,
45-
specification: $func.specification || undefined
45+
specification: undefined
4646
});
4747
await invalidate(Dependencies.FUNCTION);
4848
addNotification({

src/routes/(console)/project-[region]-[project]/functions/function-[function]/settings/updatePermissions.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
providerBranch: $func.providerBranch || undefined,
4848
providerSilentMode: $func.providerSilentMode || undefined,
4949
providerRootDirectory: $func.providerRootDirectory || undefined,
50-
specification: $func.specification || undefined
50+
specification: undefined
5151
});
5252
await invalidate(Dependencies.FUNCTION);
5353
addNotification({

src/routes/(console)/project-[region]-[project]/functions/function-[function]/settings/updateResourceLimits.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
providerBranch: func.providerBranch || undefined,
4545
providerSilentMode: func.providerSilentMode || undefined,
4646
providerRootDirectory: func.providerRootDirectory || undefined,
47-
specification: specification || undefined
47+
specification: undefined
4848
});
4949
5050
await invalidate(Dependencies.FUNCTION);

0 commit comments

Comments
 (0)