feat(editor): Allow partial template credential setup (no-changelog) (#7899)

Enable continue button even if all credentials havent been setup
This commit is contained in:
Tomi Turtiainen
2023-12-04 09:30:34 +02:00
committed by GitHub
parent a8049a0def
commit a78729b12f
4 changed files with 8 additions and 28 deletions

View File

@@ -227,10 +227,6 @@ export const useSetupTemplateStore = defineStore('setupTemplate', () => {
return overrides;
});
const numCredentialsLeft = computed(() => {
return credentialUsages.value.length - Object.keys(selectedCredentialIdByKey.value).length;
});
//#endregion Getters
//#region Actions
@@ -375,7 +371,6 @@ export const useSetupTemplateStore = defineStore('setupTemplate', () => {
template,
credentialUsages,
selectedCredentialIdByKey,
numCredentialsLeft,
credentialOverrides,
createWorkflow,
skipSetup,