Files
bufpiv/src/app/editor/editor.component.html

20 lines
487 B
HTML

<h2>{{ selectedMessage().name }}</h2>
<div>
@if(values()) { @for (item of selectedMessage().values; track $index) {
<app-proto-field
[label]="item.name"
[configuration]="item.configuration"
[value]="values()[item.name]"
(valueChange)="updateValue(item.name, $event)"
></app-proto-field>
} }
</div>
@if(showRaw()) {
<h2>Preview</h2>
<div class="actions">
<button mat-flat-button (click)="copyToClipboard()">Copy</button>
</div>
<pre><code #code></code></pre>
}