Skip to content
Snippets Groups Projects
json-renderer.component.html 520 B
Newer Older
  • Learn to ignore specific revisions
  • <a *ngIf="isEmpty()" class="btn btn-outline-primary btn-sm" (click)="openModal(modal)">
    
    François Agneray's avatar
    François Agneray committed
        JSON
    
    François Agneray's avatar
    François Agneray committed
    </a>
    
    François Agneray's avatar
    François Agneray committed
    
    <ng-template #modal>
        <div class="modal-header">
    
            <h4 class="modal-title pull-left">{{ attribute.label }}</h4>
    
    François Agneray's avatar
    François Agneray committed
            <button type="button" class="close pull-right" aria-label="Close" (click)="modalRef.hide()">
                <span aria-hidden="true">&times;</span>
            </button>
        </div>
        <div class="modal-body">
            <ngx-json-viewer [json]="value"></ngx-json-viewer>
        </div>
    </ng-template>