diff options
author | withbest <seekseat@outlook.com> | 2024-07-29 14:43:27 +0800 |
---|---|---|
committer | withbest <seekseat@outlook.com> | 2024-07-29 14:43:27 +0800 |
commit | dd08f9320249d8ac7bf96f338a5be70d60af1dce (patch) | |
tree | a1c45c5f1663e72a8591ad6e0d57bc2a05c7e7b6 /apps/files/src | |
parent | 8f235982c9d4380065ba2568b6185c4ceefaa9fa (diff) | |
download | nextcloud-server-dd08f9320249d8ac7bf96f338a5be70d60af1dce.tar.gz nextcloud-server-dd08f9320249d8ac7bf96f338a5be70d60af1dce.zip |
chore: fix some comments
Signed-off-by: withbest <seekseat@outlook.com>
Diffstat (limited to 'apps/files/src')
-rw-r--r-- | apps/files/src/views/Navigation.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/views/Navigation.vue b/apps/files/src/views/Navigation.vue index cfd170bd073..f431ca62b5f 100644 --- a/apps/files/src/views/Navigation.vue +++ b/apps/files/src/views/Navigation.vue @@ -160,7 +160,7 @@ export default defineComponent({ if (this.currentViewId !== this.currentView?.id) { // This is guaranteed to be a view because `currentViewId` falls back to the default 'files' view const view = this.views.find(({ id }) => id === this.currentViewId)! - // The the new view as active + // The new view as active this.showView(view) logger.debug(`Navigation changed from ${oldView} to ${newView}`, { to: view }) } |