diff options
author | julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> | 2022-12-28 11:32:42 +0100 |
---|---|---|
committer | julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> | 2023-01-11 14:22:47 +0100 |
commit | 087f445499ec5a1d4eae246941f0e155420685fb (patch) | |
tree | 42611b49f2fa81df2830018f939bb526769cbed0 /apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue | |
parent | 9bddc38f196bdf28142a0cd7afce4505672d8fa2 (diff) | |
download | nextcloud-server-087f445499ec5a1d4eae246941f0e155420685fb.tar.gz nextcloud-server-087f445499ec5a1d4eae246941f0e155420685fb.zip |
Replace custom tooltips with native tooltips
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
Diffstat (limited to 'apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue')
-rw-r--r-- | apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue b/apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue index 22ce295db1d..591aab76710 100644 --- a/apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue +++ b/apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue @@ -27,9 +27,8 @@ :close-after-click="true" :disabled="!isSupportedScope" :icon="iconClass" - :title="displayName" + :title="isSupportedScope ? tooltip : tooltipDisabled" @click.stop.prevent="updateScope"> - {{ isSupportedScope ? tooltip : tooltipDisabled }} </NcActionButton> </template> |