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:
maxtkacz
2021-08-27 17:25:54 +02:00
committed by GitHub
parent 69745c93d8
commit fb71324a53
4 changed files with 10 additions and 10 deletions

View File

@@ -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',
});
},