1
0
Fork 0

Bug fix 3.4/auto complete graph ui (#8663)

This commit is contained in:
Heiko 2019-04-11 11:53:23 +02:00 committed by Jan
parent fa9460c927
commit 7b012d8fca
2 changed files with 10 additions and 1 deletions

View File

@ -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)
-------------------

View File

@ -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;