isdashboard/src/main/webapp/app/tab-items/rawjson-view.component.html

5 lines
158 B
HTML
Raw Normal View History

2023-09-01 22:27:00 +02:00
<h2 *ngIf="chosenItem" id="detail-title">Raw JSON for item: {{ chosenItem.name }}</h2>
<div class="bg-light">
<pre>{{ fetchedRawData | json }}</pre>
</div>