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:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2021-03-17 10:25:31 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2021-03-17 15:03:38 +0300
commit5d9bb5e2471b5266496a1bfd0af11e766de917c2 (patch)
tree0b7d4017098209ac3b6e4df3938257d91b9d8194 /apps/files_sharing/src
parentfb183b457c2befbc3ab04b0cb070aa1e300443c6 (diff)
Lint fix
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_sharing/src')
-rw-r--r--apps/files_sharing/src/collaborationresources.js2
-rw-r--r--apps/files_sharing/src/components/SharingEntry.vue2
-rw-r--r--apps/files_sharing/src/views/CollaborationView.vue6
3 files changed, 5 insertions, 5 deletions
diff --git a/apps/files_sharing/src/collaborationresources.js b/apps/files_sharing/src/collaborationresources.js
index 68cea9e59d3..b724c6f93a4 100644
--- a/apps/files_sharing/src/collaborationresources.js
+++ b/apps/files_sharing/src/collaborationresources.js
@@ -39,5 +39,5 @@ Vue.use(Vuex)
export {
Vue,
- View
+ View,
}
diff --git a/apps/files_sharing/src/components/SharingEntry.vue b/apps/files_sharing/src/components/SharingEntry.vue
index 4baafcd96bc..d31c7ef6e3f 100644
--- a/apps/files_sharing/src/components/SharingEntry.vue
+++ b/apps/files_sharing/src/components/SharingEntry.vue
@@ -30,8 +30,8 @@
:menu-position="'left'"
:url="share.shareWithAvatar" />
<component :is="share.shareWithLink ? 'a' : 'div'"
- :href="share.shareWithLink"
v-tooltip.auto="tooltip"
+ :href="share.shareWithLink"
class="sharing-entry__desc">
<h5>{{ title }}<span v-if="!isUnique" class="sharing-entry__desc-unique"> ({{ share.shareWithDisplayNameUnique }})</span></h5>
<p v-if="hasStatus">
diff --git a/apps/files_sharing/src/views/CollaborationView.vue b/apps/files_sharing/src/views/CollaborationView.vue
index 5cfcd299cce..a3249f8b5c7 100644
--- a/apps/files_sharing/src/views/CollaborationView.vue
+++ b/apps/files_sharing/src/views/CollaborationView.vue
@@ -33,7 +33,7 @@ import { CollectionList } from 'nextcloud-vue-collections'
export default {
name: 'CollaborationView',
components: {
- CollectionList
+ CollectionList,
},
computed: {
fileId() {
@@ -47,7 +47,7 @@ export default {
return '' + this.$root.model.name
}
return ''
- }
- }
+ },
+ },
}
</script>