Skip to content

Commit 1d1c7a8

Browse files
authored
Merge pull request topcoderinc#437 from kinfkong/issue-316
fix issue topcoderinc#316
2 parents 49a676d + 397e0b4 commit 1d1c7a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/app.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
<span class="time">[{{item.time | date:'medium'}}] ></span>
101101
<span class="common-font-color" (click)="onRawContentClick(item.rawCommand)">{{item.rawCommand}}</span>
102102
</div>
103-
<div class="{{'result ' + (item.error ? 'error-font-color':'result-color')}}" *ngIf="item.instanceId === currentInstance.id">{{item.result}}</div>
103+
<div class="{{'result ' + (item.error ? 'error-font-color':'result-color')}}" *ngIf="item.instanceId === currentInstance.id"><pre>{{item.result}}</pre></div>
104104
</div>
105105
</div>
106106
<div class="input">

0 commit comments

Comments
 (0)