aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-04-26 12:23:51 +0200
committerJoas Schilling <coding@schilljs.com>2023-04-26 12:23:51 +0200
commit58a4861390571b26d63136d4b7d0a1f51c36e620 (patch)
treef81f8b9925a1dbd75aa8bd21501753213997c87f /apps/settings
parentea67129b64eaf56f185dda0a1b6a57887021f686 (diff)
downloadnextcloud-server-58a4861390571b26d63136d4b7d0a1f51c36e620.tar.gz
nextcloud-server-58a4861390571b26d63136d4b7d0a1f51c36e620.zip
fix(settings): Fix title of profile scope options
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/settings')
-rw-r--r--apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue2
1 files changed, 1 insertions, 1 deletions
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 }}
</NcActionButton>