refactor: add title to BrandButton usage

This commit is contained in:
Zack Spear
2023-12-11 19:51:12 -05:00
committed by Zack Spear
parent d1c0f46325
commit 79ff9bedb9
2 changed files with 2 additions and 0 deletions

View File

@@ -48,6 +48,7 @@ const filteredKeyActions = computed((): ServerStateDataAction[] | undefined => {
:icon-right="ArrowTopRightOnSquareIcon"
:icon-right-hover-display="true"
:text="t(action.text)"
:title="action.title ? t(action.title) : undefined"
@click="action.click()"
/>
</li>

View File

@@ -196,6 +196,7 @@ const items = computed((): RegistrationItemProps[] => {
:disabled="authAction?.disabled"
:icon="authAction.icon"
:text="t(authAction.text)"
:title="authAction.title ? t(authAction.title) : undefined"
@click="authAction.click()"
/>
</span>