mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
refactor(editor-ui): Remove webhook deletion success toasts (#3839)
This commit is contained in:
parent
60da5bb7ec
commit
a7b229f98a
|
@ -156,11 +156,6 @@ export default mixins(
|
|||
);
|
||||
return;
|
||||
}
|
||||
|
||||
this.$showMessage({
|
||||
title: this.$locale.baseText('ndv.execute.stopWaitingForWebhook.success'),
|
||||
type: 'success',
|
||||
});
|
||||
},
|
||||
|
||||
async onClick() {
|
||||
|
|
|
@ -341,7 +341,6 @@
|
|||
"ndv.execute.nodeIsDisabled": "Enable node to execute",
|
||||
"ndv.execute.requiredFieldsMissing": "Complete required fields first",
|
||||
"ndv.execute.stopWaitingForWebhook.error": "Problem deleting test webhook",
|
||||
"ndv.execute.stopWaitingForWebhook.success": "Deleted test webhook",
|
||||
"ndv.execute.workflowAlreadyRunning": "Workflow is already running",
|
||||
"ndv.featureRequest": "I wish this node would...",
|
||||
"ndv.input": "Input",
|
||||
|
@ -551,7 +550,6 @@
|
|||
"nodeView.showMessage.stopExecutionCatch.message": "It completed before it could be stopped",
|
||||
"nodeView.showMessage.stopExecutionCatch.title": "Workflow finished executing",
|
||||
"nodeView.showMessage.stopExecutionTry.title": "Execution stopped",
|
||||
"nodeView.showMessage.stopWaitingForWebhook.title": "Webhook deleted",
|
||||
"nodeView.stopCurrentExecution": "Stop current execution",
|
||||
"nodeView.stopWaitingForWebhookCall": "Stop waiting for webhook call",
|
||||
"nodeView.stoppingCurrentExecution": "Stopping current execution",
|
||||
|
|
|
@ -1242,11 +1242,6 @@ export default mixins(
|
|||
);
|
||||
return;
|
||||
}
|
||||
|
||||
this.$showMessage({
|
||||
title: this.$locale.baseText('nodeView.showMessage.stopWaitingForWebhook.title'),
|
||||
type: 'success',
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue