mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-14 12:56:34 +03:00
4acfc11148
fixes #190
8 lines
330 B
HTML
8 lines
330 B
HTML
<header *ngIf="data.responses.length"> Response samples </header>
|
|
<tabs *ngIf="data.responses.length">
|
|
<tab *ngFor="let response of data.responses" [tabTitle]="response.code + ' ' + response.description | marked"
|
|
[tabStatus]="response.type">
|
|
<schema-sample [pointer]="response.pointer"></schema-sample>
|
|
</tab>
|
|
</tabs>
|