diff options
author | Julius Härtl <jus@bitgrid.net> | 2024-03-06 13:45:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-06 13:45:34 +0100 |
commit | db12159fb6f85c0365684d856b4586296e11c952 (patch) | |
tree | 47550e8f112be3c3ff7bcc90c1c261bf110cbe5b /apps | |
parent | 827269f5b857a5daca09f4266445d41b327dad2b (diff) | |
parent | 73bb455b7cbe052b1936f125447bad41cd63935e (diff) | |
download | nextcloud-server-db12159fb6f85c0365684d856b4586296e11c952.tar.gz nextcloud-server-db12159fb6f85c0365684d856b4586296e11c952.zip |
Merge pull request #44007 from nextcloud/feat/rename-teams
feat: Rename circles to teams
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/src/components/SharingInput.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/src/components/SharingInput.vue b/apps/files_sharing/src/components/SharingInput.vue index b8559dd0972..c91e2ddcdcf 100644 --- a/apps/files_sharing/src/components/SharingInput.vue +++ b/apps/files_sharing/src/components/SharingInput.vue @@ -408,8 +408,8 @@ export default { } case this.SHARE_TYPES.SHARE_TYPE_CIRCLE: return { - icon: 'icon-circle', - iconTitle: t('files_sharing', 'Circle'), + icon: 'icon-teams', + iconTitle: t('files_sharing', 'Team'), } case this.SHARE_TYPES.SHARE_TYPE_ROOM: return { |