refactor: Connect page web component button sizes

This commit is contained in:
Zack Spear
2023-12-11 19:50:32 -05:00
committed by Zack Spear
parent 909c2c6798
commit d1c0f46325
2 changed files with 3 additions and 0 deletions

View File

@@ -22,7 +22,9 @@ const { authAction, stateData } = storeToRefs(serverStore);
<BrandButton
:disabled="authAction?.disabled"
:icon="authAction.icon"
size="12px"
:text="t(authAction.text)"
:title="authAction?.title ? t(authAction?.title) : undefined"
@click="authAction.click()"
/>
</span>

View File

@@ -30,6 +30,7 @@ const downloadUrl = computed(() => new URL(`/graphql/api/logs?apiKey=${apiKey.va
:external="true"
:href="downloadUrl.toString()"
:icon="ArrowDownTrayIcon"
size="12px"
:text="t('Download unraid-api Logs')"
/>
</div>