diff --git a/web/components/KeyActions.vue b/web/components/KeyActions.vue index 6ef9491de..44286921a 100644 --- a/web/components/KeyActions.vue +++ b/web/components/KeyActions.vue @@ -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()" /> diff --git a/web/components/Registration.ce.vue b/web/components/Registration.ce.vue index 884dc7fbe..74f230dde 100644 --- a/web/components/Registration.ce.vue +++ b/web/components/Registration.ce.vue @@ -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()" />