mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix: update error
This commit is contained in:
parent
f32039647b
commit
cdd662545d
|
@ -2615,7 +2615,8 @@
|
||||||
"executionUsage.button.upgrade": "Upgrade plan",
|
"executionUsage.button.upgrade": "Upgrade plan",
|
||||||
"executionUsage.expired.text": "Your trial is over. Upgrade now to keep your data.",
|
"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.",
|
"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.string": "String",
|
||||||
"type.number": "Number",
|
"type.number": "Number",
|
||||||
"type.dateTime": "Date & Time",
|
"type.dateTime": "Date & Time",
|
||||||
|
|
|
@ -105,7 +105,8 @@ async function fetchExecution() {
|
||||||
if (!currentExecution.value) {
|
if (!currentExecution.value) {
|
||||||
toast.showMessage({
|
toast.showMessage({
|
||||||
type: 'error',
|
type: 'error',
|
||||||
message: i18n.baseText('openExecution.missingExeuctionId'),
|
title: i18n.baseText('openExecution.missingExeuctionId.title'),
|
||||||
|
message: i18n.baseText('openExecution.missingExeuctionId.message'),
|
||||||
});
|
});
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue