Move tag history to its own top-level tab

This commit is contained in:
Joseph Schorr 2017-03-03 13:25:06 -05:00
parent 4f567c0654
commit 91c7396057
2 changed files with 21 additions and 1 deletions

View file

@ -22,12 +22,14 @@
$scope.logsShown = 0;
$scope.buildsShown = 0;
$scope.settingsShown = 0;
$scope.historyShown = 0;
$scope.viewScope = {
'selectedTags': [],
'repository': null,
'imageLoader': imageLoader,
'builds': null
'builds': null,
'historyFilter': ''
};
var buildPollChannel = null;
@ -132,6 +134,10 @@
$scope.buildsShown++;
};
$scope.showHistory = function() {
$scope.historyShown++;
};
$scope.showSettings = function() {
$scope.settingsShown++;
};