mirror of https://gitee.com/bigwinds/arangodb
Bug fix/ui navigation label issue 1406 (#3879)
* nav label wrongly removed * UI: fixed disappearing of the navigation label in some case special case
This commit is contained in:
parent
ace06575dd
commit
5561ab4482
|
@ -1,6 +1,8 @@
|
||||||
devel
|
devel
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
* UI: fixed disappearing of the navigation label in some case special case
|
||||||
|
|
||||||
* fixed issue #3917: traversals with high maximal depth take extremely long
|
* fixed issue #3917: traversals with high maximal depth take extremely long
|
||||||
in planning phase.
|
in planning phase.
|
||||||
|
|
||||||
|
|
|
@ -1227,7 +1227,9 @@
|
||||||
hideStatistics: true
|
hideStatistics: true
|
||||||
}));
|
}));
|
||||||
// hide menu entries
|
// hide menu entries
|
||||||
$('.subMenuEntry').remove();
|
if (!frontendConfig.isCluster) {
|
||||||
|
$('#subNavigationBar .breadcrumb').html('');
|
||||||
|
}
|
||||||
this.getNodeInfo();
|
this.getNodeInfo();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue