From afc13140c42667ca46b82ac47e90895740b80d83 Mon Sep 17 00:00:00 2001 From: Kenny Lee Sin Cheong Date: Tue, 16 May 2017 23:59:14 -0400 Subject: [PATCH] Show build logs timestamps by default Show timestanps in build logs when quay.showBuildLogTimestamps is not set --- static/js/pages/build-view.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/static/js/pages/build-view.js b/static/js/pages/build-view.js index ad62c24e0..77f0f503e 100644 --- a/static/js/pages/build-view.js +++ b/static/js/pages/build-view.js @@ -15,7 +15,11 @@ $scope.name = $routeParams.name; $scope.build_uuid = $routeParams.buildid; - $scope.showLogTimestamps = CookieService.get('quay.showBuildLogTimestamps') == 'true'; + if (!CookieService.get('quay.showBuildLogTimestamps')) { + $scope.showLogTimestamps = true; + } else { + $scope.showLogTimestamps = CookieService.get('quay.showBuildLogTimestamps') == 'true'; + } var loadBuild = function() { var params = {