fix: panel issues w/ backups (#7009)

This commit is contained in:
Calum H.
2026-08-05 13:17:29 +00:00
committed by GitHub
parent 1c574a1f2d
commit c0e6f094d9
2 changed files with 10 additions and 4 deletions
@@ -52,7 +52,7 @@
:color="action.color === 'standard' ? undefined : (action.color ?? 'brand')"
size="xl"
:disabled="action.disabled"
class="!w-full"
class="flex-1"
@click="action.onClick"
>
<component :is="action.icon" v-if="action.icon && !action.showAltIcon" class="size-4" />
@@ -64,7 +64,7 @@
{{ action.label }}
</Button>
<Button v-if="errorDetails" size="xl" class="!w-full" @click="copyErrorInformation">
<Button v-if="errorDetails" size="xl" class="flex-1" @click="copyErrorInformation">
<CopyIcon v-if="!infoCopied" class="size-4" />
<CheckIcon v-else class="size-4" />
Copy Information