From 58a4861390571b26d63136d4b7d0a1f51c36e620 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 26 Apr 2023 12:23:51 +0200 Subject: [PATCH] fix(settings): Fix title of profile scope options Signed-off-by: Joas Schilling --- .../components/PersonalInfo/shared/FederationControlAction.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue b/apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue index ad58ff282eb..d5d57c47c01 100644 --- a/apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue +++ b/apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue @@ -27,7 +27,7 @@ :close-after-click="true" :disabled="!isSupportedScope" :icon="iconClass" - :title="isSupportedScope ? tooltip : tooltipDisabled" + :title="displayName" @click.stop.prevent="updateScope"> {{ isSupportedScope ? tooltip : tooltipDisabled }} -- 2.39.5