mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -08:00
🐛 Fix bug that workflow names could have spaces in beginning and end
This commit is contained in:
parent
7aff08cc8a
commit
0c89445682
|
@ -181,6 +181,7 @@ class App {
|
|||
|
||||
const newWorkflowData = req.body;
|
||||
|
||||
newWorkflowData.name = newWorkflowData.name.trim();
|
||||
newWorkflowData.createdAt = this.getCurrentDate();
|
||||
newWorkflowData.updatedAt = this.getCurrentDate();
|
||||
|
||||
|
|
|
@ -399,7 +399,7 @@ export const workflowHelpers = mixins(
|
|||
if (currentWorkflow === undefined || withNewName === true) {
|
||||
// Workflow is new or is supposed to get saved under a new name
|
||||
// so create a new entry in database
|
||||
workflowData.name = workflowName as string;
|
||||
workflowData.name = workflowName.trim() as string;
|
||||
|
||||
if (withNewName === true) {
|
||||
// If an existing workflow gets resaved with a new name
|
||||
|
|
Loading…
Reference in a new issue