mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
⚡ Copy tweaks (#2780)
* Update en.json * More copy tweaks and addressed PR comments * 🔥 Remove empty strings from base text * ⚡ Adjust `$showMessage` signature type * 🔥 Remove message from Vue components * ✏️ Fix typo Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
This commit is contained in:
@@ -500,12 +500,12 @@ export const workflowHelpers = mixins(
|
||||
this.$externalHooks().run('workflow.afterUpdate', { workflowData });
|
||||
|
||||
return true;
|
||||
} catch (e) {
|
||||
} catch (error) {
|
||||
this.$store.commit('removeActiveAction', 'workflowSaving');
|
||||
|
||||
this.$showMessage({
|
||||
title: this.$locale.baseText('workflowHelpers.showMessage.title'),
|
||||
message: this.$locale.baseText('workflowHelpers.showMessage.message') + `"${e.message}"`,
|
||||
message: error.message,
|
||||
type: 'error',
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user