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

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2022-08-19 00:43:01 +0300
committerJulius Härtl <jus@bitgrid.net>2022-08-19 00:57:29 +0300
commit158a6116ca7f06076cbceee8beb2eeee6e8417e6 (patch)
tree3382415f206d5deba388b6c20e3b467cbeb67f35 /src/components/PublicFilesEditor.vue
parentfe2f71cbed5b88b78514ce157647b483138a8cd8 (diff)
Rename components to Nc
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'src/components/PublicFilesEditor.vue')
-rw-r--r--src/components/PublicFilesEditor.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/PublicFilesEditor.vue b/src/components/PublicFilesEditor.vue
index 77ea505c6..ddf29b220 100644
--- a/src/components/PublicFilesEditor.vue
+++ b/src/components/PublicFilesEditor.vue
@@ -21,22 +21,22 @@
-->
<template>
- <Modal v-if="active" :title="fileName" @close="close">
+ <NcModal v-if="active" :title="fileName" @close="close">
<Editor :file-id="fileId"
:relative-path="relativePath"
:active="active"
:share-token="shareToken"
:mime="mimeType" />
- </Modal>
+ </NcModal>
</template>
<script>
-import Modal from '@nextcloud/vue/dist/Components/Modal.js'
+import NcModal from '@nextcloud/vue/dist/Components/NcModal.js'
export default {
name: 'PublicFilesEditor',
components: {
- Modal,
+ NcModal,
Editor: () => import(/* webpackChunkName: "editor" */'./Editor.vue'),
},
props: {