* feat: add clipboard copy icon to the x-term-component * feat: start device poll after firmware upgrade * feat: remove the OK button from the firmware upgrade page * feat: read the firmware after firmware upgrade * fix: scrolling of the x-term-component * feat: refresh the firmware version after recovery device * fix: remove the scrollbar styling * fix: stay on device firmware upgrade screen
18 lines
607 B
HTML
18 lines
607 B
HTML
<div class="x-term-container">
|
|
<div class="x-term-wrapper" #scrollMe>
|
|
<ul class="list-unstyled">
|
|
<li *ngFor="let log of logs" [ngClass]="log.cssClass"><span>{{ log.message }}</span></li>
|
|
</ul>
|
|
</div>
|
|
<div class="copy-container-wrapper">
|
|
<div class="copy-container">
|
|
<span class="fa fa-2x fa-copy"
|
|
ngxClipboard
|
|
[cbContent]="getClipboardContent()"
|
|
title="Copy to clipboard"
|
|
data-toggle="tooltip"
|
|
data-placement="top"></span>
|
|
</div>
|
|
</div>
|
|
</div>
|