diff options
author | Kate <26026535+provokateurin@users.noreply.github.com> | 2024-09-04 18:00:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-04 18:00:05 +0200 |
commit | 4ac730e463cb01821f405274c314e8782dbbe58a (patch) | |
tree | f363bd38e7dbd41a9561e3b48f2b58cad630b274 /apps | |
parent | ce7da15800cc0661b7723e128e4104971e3b048a (diff) | |
parent | 3a5e0bd10a995f85a7da554c95b43a9d0fbc0d2b (diff) | |
download | nextcloud-server-4ac730e463cb01821f405274c314e8782dbbe58a.tar.gz nextcloud-server-4ac730e463cb01821f405274c314e8782dbbe58a.zip |
Merge pull request #47746 from nextcloud/backport/47738/stable28
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/src/views/Sidebar.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/views/Sidebar.vue b/apps/files/src/views/Sidebar.vue index c76cfc45af5..40368f0e4be 100644 --- a/apps/files/src/views/Sidebar.vue +++ b/apps/files/src/views/Sidebar.vue @@ -491,7 +491,7 @@ export default { await this.$nextTick() - if (focusTabAfterLoad) { + if (focusTabAfterLoad && this.$refs.sidebar) { this.$refs.sidebar.focusActiveTabContent() } } catch (error) { |