diff options
author | Joas Schilling <coding@schilljs.com> | 2023-04-26 12:23:51 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-04-26 12:23:51 +0200 |
commit | 58a4861390571b26d63136d4b7d0a1f51c36e620 (patch) | |
tree | f81f8b9925a1dbd75aa8bd21501753213997c87f /apps/settings | |
parent | ea67129b64eaf56f185dda0a1b6a57887021f686 (diff) | |
download | nextcloud-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.vue | 2 |
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> |