1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-21 14:29:40 +02:00

fix(log-viewer): fix copy logs and log status

This commit is contained in:
Ricardo Matsui 2020-10-28 23:43:53 -07:00
parent ae3809cefd
commit 3f9ff8460f
2 changed files with 4 additions and 4 deletions

View file

@ -20,7 +20,7 @@ angular.module('portainer.docker').controller('LogViewerController', [
};
this.copy = function () {
clipboard.copyText(this.state.filteredLogs);
clipboard.copyText(this.state.filteredLogs.map((log) => log.line));
$('#refreshRateChange').show();
$('#refreshRateChange').fadeOut(2000);
};