Added API keys. Minor modifications for other views.

This commit is contained in:
Tom
2025-03-27 16:31:07 +00:00
parent b1bac758e3
commit 298d351e5d
31 changed files with 499 additions and 24 deletions

View File

@ -0,0 +1,20 @@
<section>
{{(isVisible ? key().id : key().label)}}
<article class="right">
<button mat-button
class="neutral"
[disabled]="waitForResponse"
(click)="isVisible = !isVisible">
<mat-icon>{{(isVisible ? "visibility_off" : "visibility")}}</mat-icon>
{{(isVisible ? "Hide" : "View")}} Key
</button>
<button mat-button
class="danger"
[disabled]="waitForResponse"
(click)="delete()">
<mat-icon>delete</mat-icon>
Delete
</button>
</article>
</section>