mirror of https://gitee.com/bigwinds/arangodb
changelog (#4051)
This commit is contained in:
parent
3b1453b864
commit
2cda6b8153
|
@ -1,6 +1,8 @@
|
|||
devel
|
||||
-----
|
||||
|
||||
* UI: improved the behavior during collection creation in a cluster environment
|
||||
|
||||
* UI: fixed broken foxx configuration keys. Some valid configuration values
|
||||
could not be edited via the ui.
|
||||
|
||||
|
|
|
@ -406,9 +406,11 @@
|
|||
arangoHelper.arangoError('Error', data.errorMessage);
|
||||
} catch (ignore) {}
|
||||
} else {
|
||||
this.updateCollectionsView();
|
||||
if (window.location.hash === '#collections') {
|
||||
this.updateCollectionsView();
|
||||
}
|
||||
arangoHelper.arangoNotification('Collection', 'Collection "' + data.name + '" successfully created.');
|
||||
}
|
||||
window.modalView.hide();
|
||||
}.bind(this);
|
||||
|
||||
var tmpObj = {
|
||||
|
@ -424,6 +426,8 @@
|
|||
tmpObj.journalSize = collSize;
|
||||
}
|
||||
this.collection.newCollection(tmpObj, callback);
|
||||
window.modalView.hide();
|
||||
arangoHelper.arangoNotification('Collection', 'Collection "' + collName + '" will be created.');
|
||||
}
|
||||
}.bind(this);
|
||||
|
||||
|
|
Loading…
Reference in New Issue