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)
|
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.
|
* fixed a memory leak in PRUNE operation for traversals.
|
||||||
The leak occurred only when PRUNE was actively used in queries.
|
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
|
* port back timestamp replication in agency from devel
|
||||||
|
|
||||||
|
|
||||||
v3.4.5 (2019-03-27)
|
v3.4.5 (2019-03-27)
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
|
|
@ -42,11 +42,12 @@
|
||||||
} else {
|
} else {
|
||||||
$('#modal-dialog .modal-footer .button-success').css('display', 'initial');
|
$('#modal-dialog .modal-footer .button-success').css('display', 'initial');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (id === 'smartGraph') {
|
if (id === 'smartGraph') {
|
||||||
this.toggleSmartGraph();
|
this.toggleSmartGraph();
|
||||||
$('#createGraph').addClass('active');
|
$('#createGraph').addClass('active');
|
||||||
this.showSmartGraphOptions();
|
this.showSmartGraphOptions();
|
||||||
} else {
|
} else if (id === 'createGraph') {
|
||||||
this.toggleSmartGraph();
|
this.toggleSmartGraph();
|
||||||
this.hideSmartGraphOptions();
|
this.hideSmartGraphOptions();
|
||||||
}
|
}
|
||||||
|
@ -246,6 +247,10 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
toggleSmartGraph: function () {
|
toggleSmartGraph: function () {
|
||||||
|
if (!frontendConfig.isCluster || !frontendConfig.isEnterprise) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var i;
|
var i;
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue