Do not use replace on the group id

Signed-off-by: Julius Härtl <jus@bitgrid.net>
pull/19739/head
Julius Härtl 5 years ago
parent fb9a6b8134
commit 6020a2efd9
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF
  1. 6
      apps/settings/js/vue-5.js
  2. 2
      apps/settings/js/vue-5.js.map
  3. 4
      apps/settings/js/vue-settings-apps-users-management.js
  4. 2
      apps/settings/js/vue-settings-apps-users-management.js.map
  5. 3
      apps/settings/src/views/Users.vue

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…
Cancel
Save