This commit is contained in:
Frank
2025-10-10 16:42:27 -04:00
parent d8b3aa9382
commit 48008f91ac
2 changed files with 13 additions and 5 deletions

View File

@@ -18,6 +18,14 @@
font-weight: normal;
color: var(--color-text-muted);
text-transform: uppercase;
&:nth-child(1) {
width: 180px;
}
&:nth-child(3) {
width: 200px;
}
}
td {
@@ -35,7 +43,6 @@
&[data-slot="provider-key"] {
text-align: left;
color: var(--color-text-secondary);
width: 50%;
[data-slot="edit-form"] {
display: flex;
@@ -82,7 +89,6 @@
&[data-slot="provider-action"] {
text-align: left;
font-family: var(--font-sans);
width: 30%;
white-space: nowrap;
[data-slot="configured-actions"] {

View File

@@ -147,9 +147,11 @@ function ProviderRow(props: { provider: Provider }) {
>
{saveSubmission.pending ? "Saving..." : "Save"}
</button>
<button type="reset" data-color="ghost" onClick={() => hide()}>
Cancel
</button>
<Show when={!saveSubmission.pending}>
<button type="reset" data-color="ghost" onClick={() => hide()}>
Cancel
</button>
</Show>
</div>
</Show>
</td>