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 1 additions and 2 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -75,7 +75,6 @@
|
||||||
<AppNavigationCaption v-if="groupList.length > 0" :title="t('settings', 'Groups')" />
|
<AppNavigationCaption v-if="groupList.length > 0" :title="t('settings', 'Groups')" />
|
||||||
<AppNavigationItem
|
<AppNavigationItem
|
||||||
v-for="group in groupList"
|
v-for="group in groupList"
|
||||||
:id="group.id"
|
|
||||||
:key="group.id"
|
:key="group.id"
|
||||||
:exact="true"
|
:exact="true"
|
||||||
:title="group.title"
|
:title="group.title"
|
||||||
|
@ -490,7 +489,7 @@ export default {
|
||||||
*/
|
*/
|
||||||
formatGroupMenu(group) {
|
formatGroupMenu(group) {
|
||||||
const item = {}
|
const item = {}
|
||||||
item.id = group.id.replace(' ', '_')
|
item.id = group.id
|
||||||
item.title = group.name
|
item.title = group.name
|
||||||
item.usercount = group.usercount
|
item.usercount = group.usercount
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue