fix(editor): Show confirm on pull only when http response status is 409 (#6451)

* fix(editor): add docs link to translation

* fix(editor): show confirm on pull only when http response status is 409
This commit is contained in:
Csaba Tuncsik
2023-06-16 08:34:14 +02:00
committed by GitHub
parent ee10ac8da9
commit 5819be5ced
5 changed files with 68 additions and 33 deletions

View File

@@ -13,8 +13,9 @@ const toast = useToast();
const message = useMessage();
const loadingService = useLoadingService();
const versionControlDocsUrl = ref('https://docs.n8n.io/environments/version-control/');
const versionControlDocsSetupUrl = computed(() => versionControlDocsUrl.value + 'setup/');
const versionControlDocsSetupUrl = computed(() =>
locale.baseText('settings.versionControl.docs.setup.url'),
);
const isConnected = ref(false);
const onConnect = async () => {