mirror of https://gitee.com/bigwinds/arangodb
Bug fix 3.4/auto complete graph ui (#8663)
This commit is contained in:
parent
fa9460c927
commit
7b012d8fca
|
@ -1,6 +1,9 @@
|
|||
v3.4.6 (XXXX-XX-XX)
|
||||
-------------------
|
||||
|
||||
* fixed internal issue #2946: create graph autocomplete was not working under
|
||||
certain circumstances.
|
||||
|
||||
* fixed a memory leak in PRUNE operation for traversals.
|
||||
The leak occurred only when PRUNE was actively used in queries.
|
||||
|
||||
|
@ -12,6 +15,7 @@ v3.4.6 (XXXX-XX-XX)
|
|||
|
||||
* port back timestamp replication in agency from devel
|
||||
|
||||
|
||||
v3.4.5 (2019-03-27)
|
||||
-------------------
|
||||
|
||||
|
|
|
@ -42,11 +42,12 @@
|
|||
} else {
|
||||
$('#modal-dialog .modal-footer .button-success').css('display', 'initial');
|
||||
}
|
||||
|
||||
if (id === 'smartGraph') {
|
||||
this.toggleSmartGraph();
|
||||
$('#createGraph').addClass('active');
|
||||
this.showSmartGraphOptions();
|
||||
} else {
|
||||
} else if (id === 'createGraph') {
|
||||
this.toggleSmartGraph();
|
||||
this.hideSmartGraphOptions();
|
||||
}
|
||||
|
@ -246,6 +247,10 @@
|
|||
},
|
||||
|
||||
toggleSmartGraph: function () {
|
||||
if (!frontendConfig.isCluster || !frontendConfig.isEnterprise) {
|
||||
return;
|
||||
}
|
||||
|
||||
var i;
|
||||
var self = this;
|
||||
|
||||
|
|
Loading…
Reference in New Issue