diff --git a/apps/files_sharing/js/dist/files_sharing_tab.js b/apps/files_sharing/js/dist/files_sharing_tab.js
index 37c168ff207777dcafebce3f18f988bf47ca8a16..41e466af185769146c74934bc5f77ff8f523ad89 100644
Binary files a/apps/files_sharing/js/dist/files_sharing_tab.js and b/apps/files_sharing/js/dist/files_sharing_tab.js differ
diff --git a/apps/files_sharing/js/dist/files_sharing_tab.js.map b/apps/files_sharing/js/dist/files_sharing_tab.js.map
index e47c570b913de6f571e5a0e2c9eb059ecfaea96e..be6e03660704c3ebceb2fb0ad2ab4c6358c5aa08 100644
Binary files a/apps/files_sharing/js/dist/files_sharing_tab.js.map and b/apps/files_sharing/js/dist/files_sharing_tab.js.map differ
diff --git a/apps/files_sharing/src/views/SharingInherited.vue b/apps/files_sharing/src/views/SharingInherited.vue
index 64c0132e05e6c7150fb0e2e7c5e9c12d22214e2c..5c46620260699826f0fae79beded51d12b2ff968 100644
--- a/apps/files_sharing/src/views/SharingInherited.vue
+++ b/apps/files_sharing/src/views/SharingInherited.vue
@@ -25,7 +25,8 @@
 		<!-- Main collapsible entry -->
 		<SharingEntrySimple
 			class="sharing-entry__inherited"
-			:title="mainTitle">
+			:title="mainTitle"
+			:subtitle="subTitle">
 			<template #avatar>
 				<div class="avatar-shared icon-more-white" />
 			</template>
@@ -88,6 +89,11 @@ export default {
 		mainTitle() {
 			return t('files_sharing', 'Others with access')
 		},
+		subTitle() {
+			return (this.showInheritedShares && this.shares.length === 0)
+				? t('files_sharing', 'No other users with access found')
+				: ''
+		},
 		toggleTooltip() {
 			return this.fileInfo.type === 'dir'
 				? t('files_sharing', 'Toggle list of others with access to this directory')