Upload modified items after tag rename

The web library will probably still display the old tag in addition to
the new one, at least until browser restart. We'll have to deal with
that separately.

Closes #1205
This commit is contained in:
Dan Stillman 2017-04-01 02:54:24 -04:00
parent 9637770c16
commit bb489a45c3
3 changed files with 22 additions and 1 deletions

View file

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