Skip to content

Commit

Permalink
allows text selection for dumb shell
Browse files Browse the repository at this point in the history
  • Loading branch information
mariotaku committed Feb 18, 2025
1 parent a940978 commit 115cd63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/terminal/dumb/dumb.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
href="https://github.com/webosbrew/dev-manager-desktop/wiki/About-Dumb-Shell" appExternalLink>here</a> for
more info.
</div>
<div *ngFor="let item of logs" (click)="$event.stopPropagation()">
<div class="user-select-text" *ngFor="let item of logs" (click)="$event.stopPropagation()">
<div class="d-flex flex-row align-items-baseline">
<label class="mx-1 text-secondary">&gt;</label>
<pre class="w-100 mb-0 user-select-text">{{item.input}}</pre>
<pre class="w-100 mb-0 user-select-text">{{ item.input }}</pre>
</div>
<div class="d-flex flex-row align-items-baseline">
<label class="mx-1" [class.text-primary]="item.status === 0" [class.text-danger]="item.status">&lt;</label>
<pre class="w-100 mb-0 user-select-text">{{item.output}}</pre>
<pre class="w-100 mb-0 user-select-text">{{ item.output }}</pre>
</div>
<hr class="w-100">
</div>
Expand Down

0 comments on commit 115cd63

Please sign in to comment.