diff --git a/apps/files/src/views/Sidebar.vue b/apps/files/src/views/Sidebar.vue index 50ac4597ea905..5a5a4b0673482 100644 --- a/apps/files/src/views/Sidebar.vue +++ b/apps/files/src/views/Sidebar.vue @@ -203,7 +203,8 @@ export default { * @return {string} */ subtitle() { - return `${this.size}, ${this.time}` + const starredIndicator = this.fileInfo.isFavourited ? '★ ' : '' + return `${starredIndicator} ${this.size}, ${this.time}` }, /**