mirror of
https://github.com/unraid/api.git
synced 2026-01-03 06:59:50 -06:00
refactor: add title to BrandButton usage
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user