diff --git a/scm-webapp/src/main/webapp/resources/js/group/sonia.group.grid.js b/scm-webapp/src/main/webapp/resources/js/group/sonia.group.grid.js index deade08457..9664993635 100644 --- a/scm-webapp/src/main/webapp/resources/js/group/sonia.group.grid.js +++ b/scm-webapp/src/main/webapp/resources/js/group/sonia.group.grid.js @@ -47,7 +47,7 @@ Sonia.group.Grid = Ext.extend(Sonia.rest.Grid, { disableCaching: false }), id: 'name', - fields: [ 'name', 'members', 'description', 'creationDate', 'type'], + fields: [ 'name', 'members', 'description', 'creationDate', 'type', 'properties'], sortInfo: { field: 'name' } diff --git a/scm-webapp/src/main/webapp/resources/js/repository/sonia.repository.grid.js b/scm-webapp/src/main/webapp/resources/js/repository/sonia.repository.grid.js index 4e237dc64d..e2d17d9bb1 100644 --- a/scm-webapp/src/main/webapp/resources/js/repository/sonia.repository.grid.js +++ b/scm-webapp/src/main/webapp/resources/js/repository/sonia.repository.grid.js @@ -43,12 +43,12 @@ Sonia.repository.Grid = Ext.extend(Sonia.rest.Grid, { initComponent: function(){ var repositoryStore = new Sonia.rest.JsonStore({ - id: 'id', proxy: new Ext.data.HttpProxy({ url: restUrl + 'repositories.json', disableCaching: false }), - fields: [ 'id', 'name', 'type', 'contact', 'description', 'creationDate', 'url', 'public', 'permissions' ], + id: 'id', + fields: [ 'id', 'name', 'type', 'contact', 'description', 'creationDate', 'url', 'public', 'permissions', 'properties' ], sortInfo: { field: 'name' } diff --git a/scm-webapp/src/main/webapp/resources/js/user/sonia.user.grid.js b/scm-webapp/src/main/webapp/resources/js/user/sonia.user.grid.js index 879a918fca..f13dc68599 100644 --- a/scm-webapp/src/main/webapp/resources/js/user/sonia.user.grid.js +++ b/scm-webapp/src/main/webapp/resources/js/user/sonia.user.grid.js @@ -50,7 +50,7 @@ Sonia.user.Grid = Ext.extend(Sonia.rest.Grid, { disableCaching: false }), id: 'name', - fields: [ 'name', 'displayName', 'mail', 'admin', 'creationDate', 'lastModified', 'type'], + fields: [ 'name', 'displayName', 'mail', 'admin', 'creationDate', 'lastModified', 'type', 'properties'], sortInfo: { field: 'name' }