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>2019-11-05 14:46:09 +0300
committerJulius Härtl <jus@bitgrid.net>2019-11-05 14:46:09 +0300
commit5eb7b205b3aed1f1e6fd5bbec41c947df46d4f39 (patch)
tree89b62bd7485689e6f226677e34c3ca22e7e41804 /src/components/PublicFilesEditor.vue
parentb6a2f9c87d4b46476f5a343d9bec252886a3d34f (diff)
Move to @nextcloud packages
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'src/components/PublicFilesEditor.vue')
-rw-r--r--src/components/PublicFilesEditor.vue20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/components/PublicFilesEditor.vue b/src/components/PublicFilesEditor.vue
index b2e4a0b27..829879f69 100644
--- a/src/components/PublicFilesEditor.vue
+++ b/src/components/PublicFilesEditor.vue
@@ -37,39 +37,39 @@ export default {
name: 'PublicFilesEditor',
components: {
Modal,
- EditorWrapper: () => import(/* webpackChunkName: "editor" */'./EditorWrapper')
+ EditorWrapper: () => import(/* webpackChunkName: "editor" */'./EditorWrapper'),
},
props: {
fileId: {
type: Number,
- default: null
+ default: null,
},
relativePath: {
type: String,
- default: null
+ default: null,
},
active: {
type: Boolean,
- default: false
+ default: false,
},
shareToken: {
type: String,
- default: null
+ default: null,
},
mimeType: {
type: String,
- default: null
- }
+ default: null,
+ },
},
computed: {
fileName() {
return this.relativePath.substring(this.relativePath.lastIndexOf('/') + 1)
- }
+ },
},
methods: {
close() {
this.active = false
- }
- }
+ },
+ },
}
</script>