mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 19:11:13 +00:00
fix(editor): Update webhook paths when duplicating workflow (#9516)
This commit is contained in:
committed by
GitHub
parent
4629354705
commit
3be7bb898b
@@ -89,11 +89,6 @@ export default defineComponent({
|
||||
prevTagIds: currentTagIds,
|
||||
};
|
||||
},
|
||||
async mounted() {
|
||||
this.name = await this.workflowsStore.getDuplicateCurrentWorkflowName(this.data.name);
|
||||
await this.$nextTick();
|
||||
this.focusOnNameInput();
|
||||
},
|
||||
computed: {
|
||||
...mapStores(useCredentialsStore, useUsersStore, useSettingsStore, useWorkflowsStore),
|
||||
},
|
||||
@@ -104,6 +99,11 @@ export default defineComponent({
|
||||
}
|
||||
},
|
||||
},
|
||||
async mounted() {
|
||||
this.name = await this.workflowsStore.getDuplicateCurrentWorkflowName(this.data.name);
|
||||
await this.$nextTick();
|
||||
this.focusOnNameInput();
|
||||
},
|
||||
methods: {
|
||||
focusOnSelect() {
|
||||
this.dropdownBus.emit('focus');
|
||||
|
||||
Reference in New Issue
Block a user