summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorAndy Scherzinger <info@andy-scherzinger.de>2024-07-29 11:37:57 +0200
committerGitHub <noreply@github.com>2024-07-29 11:37:57 +0200
commit13d2b676743c6d132b361fd0ff5923bc1f1897c0 (patch)
tree80f3b50ac97f56e37bfe5b531105eddc0005e956 /apps
parent3a7c18b44022a089a9fdaacd223068f22ac5b0b2 (diff)
parentdd08f9320249d8ac7bf96f338a5be70d60af1dce (diff)
downloadnextcloud-server-13d2b676743c6d132b361fd0ff5923bc1f1897c0.tar.gz
nextcloud-server-13d2b676743c6d132b361fd0ff5923bc1f1897c0.zip
Merge pull request #46834 from withbest/master
chore: fix some comments
Diffstat (limited to 'apps')
-rw-r--r--apps/files/src/views/Navigation.vue2
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 })
}