Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_sharing/src/views/SharingInherited.vue')
-rw-r--r--apps/files_sharing/src/views/SharingInherited.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files_sharing/src/views/SharingInherited.vue b/apps/files_sharing/src/views/SharingInherited.vue
index 18226b5859b..0f7d9d8b55b 100644
--- a/apps/files_sharing/src/views/SharingInherited.vue
+++ b/apps/files_sharing/src/views/SharingInherited.vue
@@ -30,11 +30,11 @@
<template #avatar>
<div class="avatar-shared icon-more-white" />
</template>
- <ActionButton :icon="showInheritedSharesIcon"
+ <NcActionButton :icon="showInheritedSharesIcon"
:aria-label="mainTitle"
@click.prevent.stop="toggleInheritedShares">
{{ toggleTooltip }}
- </ActionButton>
+ </NcActionButton>
</SharingEntrySimple>
<!-- Inherited shares list -->
@@ -47,7 +47,7 @@
<script>
import { generateOcsUrl } from '@nextcloud/router'
-import ActionButton from '@nextcloud/vue/dist/Components/ActionButton'
+import NcActionButton from '@nextcloud/vue/dist/Components/NcActionButton'
import axios from '@nextcloud/axios'
import Share from '../models/Share'
@@ -58,7 +58,7 @@ export default {
name: 'SharingInherited',
components: {
- ActionButton,
+ NcActionButton,
SharingEntryInherited,
SharingEntrySimple,
},