🐛 Fix bug that workflow names could have spaces in beginning and end

This commit is contained in:
Jan Oberhauser
2019-07-25 15:21:57 +02:00
parent 7aff08cc8a
commit 0c89445682
2 changed files with 2 additions and 1 deletions

View File

@@ -181,6 +181,7 @@ class App {
const newWorkflowData = req.body;
newWorkflowData.name = newWorkflowData.name.trim();
newWorkflowData.createdAt = this.getCurrentDate();
newWorkflowData.updatedAt = this.getCurrentDate();