Skip to content

Commit

Permalink
[DSC-1224] Use button for registry download
Browse files Browse the repository at this point in the history
  • Loading branch information
atarix83 committed Sep 11, 2023
1 parent 4ab5761 commit f8abdb8
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,13 @@ <h2 id="header" class="border-bottom pb-2">{{'admin.registries.metadata.head' |
<td class="selectable-row" (click)="editSchema(schema)"><a [routerLink]="[schema.prefix]">{{schema.id}}</a></td>
<td class="selectable-row" (click)="editSchema(schema)"><a [routerLink]="[schema.prefix]">{{schema.namespace}}</a></td>
<td class="selectable-row" (click)="editSchema(schema)"><a [routerLink]="[schema.prefix]">{{schema.prefix}}</a></td>
<td class="selectable-row">
<div class="d-flex justify-content-center">
<i class="fas fa-download" aria-hidden="true" (click)="onDownloadSchema(schema)"></i>
</div>
</td>
<td class="selectable-row">
<div class="d-flex justify-content-center">
<button class="btn btn-sm btn-outline-primary" (click)="onDownloadSchema(schema)">
<i class="fas fa-download" aria-hidden="true" ></i>
</button>
</div>
</td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit f8abdb8

Please sign in to comment.