mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 00:24:07 -08:00
fix: update error
This commit is contained in:
parent
f32039647b
commit
cdd662545d
|
@ -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": "You’re 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",
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue