aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue')
-rw-r--r--apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue b/apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue
index f98d9bc7535..22ce295db1d 100644
--- a/apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue
+++ b/apps/settings/src/components/PersonalInfo/shared/FederationControlAction.vue
@@ -21,7 +21,7 @@
-->
<template>
- <ActionButton :aria-label="isSupportedScope ? tooltip : tooltipDisabled"
+ <NcActionButton :aria-label="isSupportedScope ? tooltip : tooltipDisabled"
class="federation-actions__btn"
:class="{ 'federation-actions__btn--active': activeScope === name }"
:close-after-click="true"
@@ -30,17 +30,17 @@
:title="displayName"
@click.stop.prevent="updateScope">
{{ isSupportedScope ? tooltip : tooltipDisabled }}
- </ActionButton>
+ </NcActionButton>
</template>
<script>
-import ActionButton from '@nextcloud/vue/dist/Components/ActionButton'
+import NcActionButton from '@nextcloud/vue/dist/Components/NcActionButton'
export default {
name: 'FederationControlAction',
components: {
- ActionButton,
+ NcActionButton,
},
props: {