mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
⚡ Small tweaks to error and toast messages (#2142)
Removed instances of "got" - aimed to make very small changes that arn't very stylistic/ opinionated just basic native english tweaks
This commit is contained in:
@@ -632,7 +632,7 @@ export default mixins(
|
||||
|
||||
this.$showMessage({
|
||||
title: 'Workflow created',
|
||||
message: 'A new workflow got created!',
|
||||
message: 'A new workflow was successfully created!',
|
||||
type: 'success',
|
||||
});
|
||||
} else if ((e.key === 's') && (this.isCtrlKeyPressed(e) === true)) {
|
||||
@@ -912,7 +912,7 @@ export default mixins(
|
||||
await this.restApi().stopCurrentExecution(executionId);
|
||||
this.$showMessage({
|
||||
title: 'Execution stopped',
|
||||
message: `The execution with the id "${executionId}" got stopped!`,
|
||||
message: `The execution with the id "${executionId}" was stopped!`,
|
||||
type: 'success',
|
||||
});
|
||||
} catch (error) {
|
||||
@@ -957,8 +957,8 @@ export default mixins(
|
||||
}
|
||||
|
||||
this.$showMessage({
|
||||
title: 'Webhook got deleted',
|
||||
message: `The webhook got deleted!`,
|
||||
title: 'Webhook deleted',
|
||||
message: `The webhook was deleted successfully`,
|
||||
type: 'success',
|
||||
});
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user