fix: update error

This commit is contained in:
Mutasem Aldmour 2024-11-12 10:46:06 +01:00
parent f32039647b
commit cdd662545d
No known key found for this signature in database
GPG key ID: 3DFA8122BB7FD6B8
2 changed files with 4 additions and 2 deletions

View file

@ -2615,7 +2615,8 @@
"executionUsage.button.upgrade": "Upgrade plan",
"executionUsage.expired.text": "Your trial is over. Upgrade now to keep your data.",
"executionUsage.ranOutOfExecutions.text": "Youre out of executions. Upgrade your plan to keep automating.",
"openExecution.missingExeuctionId": "Make sure this workflow saves executions via the settings.",
"openExecution.missingExeuctionId.title": "Could not find execution",
"openExecution.missingExeuctionId.message": "Make sure this workflow saves executions via the settings",
"type.string": "String",
"type.number": "Number",
"type.dateTime": "Date & Time",

View file

@ -105,7 +105,8 @@ async function fetchExecution() {
if (!currentExecution.value) {
toast.showMessage({
type: 'error',
message: i18n.baseText('openExecution.missingExeuctionId'),
title: i18n.baseText('openExecution.missingExeuctionId.title'),
message: i18n.baseText('openExecution.missingExeuctionId.message'),
});
return;