- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
22 May 2019
Features
Added the possibility to specify data type for every parameter, when you do [task import from CSV file].(https://doc.corezoid.com/docs/add-task-to-process#import-task-from-csv-file)
In the Task parameters section, the button was added that allows moving parameter from one tab to another.
In the Code logic, the support of libraries
moment-timezone.js
andsha512.js
was added.
Examples:
```
require("libs/moment-timezone.js");
data.date = moment().tz('Europe/Kiev').format("DD-MM-YYYY HH:mm:ss");
require("libs/sha512.js");
data.sha512 = CryptoJS.SHA512("test").toString();
```
Fixes
- Fixed the bug, that allowed to move parameters from one tab to another without using the Save button.
- Fixed the error with the proper display of the Task parameters tab in Safari browser.
- Fixed the error with an empty list of nodes in the Get from Queue logic, if there are more than 30 nodes in the selected process.
Was this article helpful?