fix(editor): Only fetch new versions at app launch (#5647)

only call nextVersions once
This commit is contained in:
romainminaud
2023-03-09 11:01:30 +01:00
committed by GitHub
parent 6500e985ee
commit 5b9c521d04
3 changed files with 4 additions and 7 deletions

View File

@@ -208,7 +208,6 @@ import { restApi } from '@/mixins/restApi';
import useGlobalLinkActions from '@/composables/useGlobalLinkActions';
import { showMessage } from '@/mixins/showMessage';
import { titleChange } from '@/mixins/titleChange';
import { newVersions } from '@/mixins/newVersions';
import { workflowHelpers } from '@/mixins/workflowHelpers';
import { workflowRun } from '@/mixins/workflowRun';
@@ -327,7 +326,6 @@ export default mixins(
titleChange,
workflowHelpers,
workflowRun,
newVersions,
debounceHelper,
).extend({
name: 'NodeView',
@@ -3885,7 +3883,6 @@ export default mixins(
setTimeout(() => {
this.usersStore.showPersonalizationSurvey();
this.checkForNewVersions();
this.addPinDataConnections(this.workflowsStore.getPinData || ({} as IPinData));
}, 0);
});