diff --git a/apps/files/src/components/FileItem.vue b/apps/files/src/components/FileItem.vue
index 624b4a7fad7..53b3c43f82b 100644
--- a/apps/files/src/components/FileItem.vue
+++ b/apps/files/src/components/FileItem.vue
@@ -31,17 +31,14 @@
v-text="'.' + item.extension"
/>
-
@@ -133,6 +130,10 @@ export default {
davUrl = ['..', 'dav', 'files', this.$store.getters.user.id].join('/')
}
return this.$client.files.getFileUrl(davUrl)
+ },
+
+ hasIndicators() {
+ return this.indicators.length > 0
}
},
mounted() {
diff --git a/changelog/unreleased/remove-shared-with b/changelog/unreleased/remove-shared-with
new file mode 100644
index 00000000000..176bd3e4356
--- /dev/null
+++ b/changelog/unreleased/remove-shared-with
@@ -0,0 +1,6 @@
+Change: Get rid of static "Shared with:" label
+
+We removed the static "Shared with:" text label in the indicator row of file items. From now on, if a file item has no indicators, it will fall back to the one-row layout (resource name vertically centered).
+
+https://github.com/owncloud/product/issues/123
+https://github.com/owncloud/phoenix/pull/3808