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:
parent
ae3809cefd
commit
3f9ff8460f
2 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue