aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMarco Ambrosini <marcoambrosini@icloud.com>2023-11-24 14:40:15 +0900
committernextcloud-command <nextcloud-command@users.noreply.github.com>2023-11-24 14:08:25 +0000
commitc9b5369a9911da5dd732985dd730598fff49d5d2 (patch)
tree4a58bd1023e71e9bc2656b604a3ba62224a969bc /apps
parenta89e93dcecabe04aff0a23e39c45a99c9b8d5ff8 (diff)
downloadnextcloud-server-c9b5369a9911da5dd732985dd730598fff49d5d2.tar.gz
nextcloud-server-c9b5369a9911da5dd732985dd730598fff49d5d2.zip
Fix action button labels
Signed-off-by: Marco Ambrosini <marcoambrosini@icloud.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/files/src/views/Sidebar.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/views/Sidebar.vue b/apps/files/src/views/Sidebar.vue
index 5a5a4b06734..d0c6b90b49d 100644
--- a/apps/files/src/views/Sidebar.vue
+++ b/apps/files/src/views/Sidebar.vue
@@ -57,7 +57,7 @@
<template v-else #icon>
<Star :size="20" />
</template>
- {{ fileInfo.isFavourited ? t('files', 'Add to favorites') : t('files', 'Remove from favorites') }}
+ {{ fileInfo.isFavourited ? t('files', 'Remove from favorites') : t('files', 'Add to favorites') }}
</NcActionButton>
<!-- TODO: create proper api for apps to register actions
And inject themselves here. -->