diff --git a/app/docker/components/log-viewer/logViewer.html b/app/docker/components/log-viewer/logViewer.html index e61923b38..884249c13 100644 --- a/app/docker/components/log-viewer/logViewer.html +++ b/app/docker/components/log-viewer/logViewer.html @@ -7,21 +7,11 @@
-
-
-
-
- -
@@ -40,6 +30,7 @@
+ @@ -53,8 +44,8 @@
-
-      

{{ line }}

+
+      

{{ line }}

No log line matching the '{{ $ctrl.state.search }}' filter

No logs available

diff --git a/app/docker/components/log-viewer/logViewerController.js b/app/docker/components/log-viewer/logViewerController.js index 10b544c58..98ec13721 100644 --- a/app/docker/components/log-viewer/logViewerController.js +++ b/app/docker/components/log-viewer/logViewerController.js @@ -15,13 +15,17 @@ function (clipboard) { this.copy = function() { clipboard.copyText(this.state.filteredLogs); $('#refreshRateChange').show(); - $('#refreshRateChange').fadeOut(1500); + $('#refreshRateChange').fadeOut(2000); }; this.copySelection = function() { clipboard.copyText(this.state.selectedLines); $('#refreshRateChange').show(); - $('#refreshRateChange').fadeOut(1500); + $('#refreshRateChange').fadeOut(2000); + }; + + this.clearSelection = function() { + this.state.selectedLines = []; }; this.selectLine = function(line) {