Synctree in log viewer overview

This commit is contained in:
Bjarne Fyrstenborg
2019-01-22 19:54:23 +01:00
committed by Sebastiaan Janssen
parent ca98fad918
commit 01de2eb266

View File

@@ -1,7 +1,7 @@
(function () {
"use strict";
function LogViewerOverviewController($q, $location, logViewerResource) {
function LogViewerOverviewController($q, $location, $timeout, logViewerResource, navigationService) {
var vm = this;
vm.loading = false;
@@ -102,6 +102,9 @@
vm.loading = false;
});
$timeout(function () {
navigationService.syncTree({ tree: "logViewer", path: "-1" });
});
}
function searchLogQuery(logQuery){