Allow setting note text with createDataObject('item') test function

This commit is contained in:
Dan Stillman 2017-04-01 14:28:32 -04:00
parent 4867fc7e03
commit 7609ef35bc

View file

@ -417,6 +417,9 @@ function createUnsavedDataObject(objectType, params = {}) {
if (params.tags !== undefined) {
obj.setTags(params.tags);
}
if (params.note !== undefined) {
obj.setNote(params.note);
}
break;
case 'collection':