aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src/views/Sidebar.vue
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2023-07-23 02:03:13 +0200
committerFerdinand Thiessen <opensource@fthiessen.de>2023-08-02 15:19:26 +0200
commit663db2bb3439e191a9969aaa56cf8f936f1579e2 (patch)
tree4f8a4e5977bc67dada692ca8ae1b52653950c682 /apps/files/src/views/Sidebar.vue
parent114cad3812839afa00f4144b7029ccf882bbea75 (diff)
downloadnextcloud-server-663db2bb3439e191a9969aaa56cf8f936f1579e2.tar.gz
nextcloud-server-663db2bb3439e191a9969aaa56cf8f936f1579e2.zip
chore: Update nextcloud-vue to v8 beta2 and renamed changed properties
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/files/src/views/Sidebar.vue')
-rw-r--r--apps/files/src/views/Sidebar.vue10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/files/src/views/Sidebar.vue b/apps/files/src/views/Sidebar.vue
index f173ff3333a..12581222f8e 100644
--- a/apps/files/src/views/Sidebar.vue
+++ b/apps/files/src/views/Sidebar.vue
@@ -244,15 +244,15 @@ export default {
compact: this.hasLowHeight || !this.fileInfo.hasPreview || this.isFullScreen,
loading: this.loading,
starred: this.fileInfo.isFavourited,
- subtitle: this.subtitle,
- subtitleTooltip: this.fullTime,
+ subname: this.subtitle,
+ subtitle: this.fullTime,
+ name: this.fileInfo.name,
title: this.fileInfo.name,
- titleTooltip: this.fileInfo.name,
}
} else if (this.error) {
return {
key: 'error', // force key to re-render
- subtitle: '',
+ subname: '',
title: '',
class: {
'app-sidebar--full': this.isFullScreen,
@@ -262,7 +262,7 @@ export default {
// no fileInfo yet, showing empty data
return {
loading: this.loading,
- subtitle: '',
+ subname: '',
title: '',
class: {
'app-sidebar--full': this.isFullScreen,