mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #19739 from nextcloud/bugfix/noid/groupid-spaces
Do not use replace on the group id
This commit is contained in:
commit
0be52ab134
5 changed files with 8 additions and 9 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -75,7 +75,6 @@
|
|||
<AppNavigationCaption v-if="groupList.length > 0" :title="t('settings', 'Groups')" />
|
||||
<AppNavigationItem
|
||||
v-for="group in groupList"
|
||||
:id="group.id"
|
||||
:key="group.id"
|
||||
:exact="true"
|
||||
:title="group.title"
|
||||
|
|
@ -490,7 +489,7 @@ export default {
|
|||
*/
|
||||
formatGroupMenu(group) {
|
||||
const item = {}
|
||||
item.id = group.id.replace(' ', '_')
|
||||
item.id = group.id
|
||||
item.title = group.name
|
||||
item.usercount = group.usercount
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue