diff --git a/static/scripts/app/collections/group-repos.js b/static/scripts/app/collections/group-repos.js index 3909606a5a..4df40c4076 100644 --- a/static/scripts/app/collections/group-repos.js +++ b/static/scripts/app/collections/group-repos.js @@ -11,7 +11,7 @@ define([ comparator: -'mtime', url: function() { - return Common.getUrl({name: 'group_repos', group_id: this.group_id})+'?from=web'; + return Common.getUrl({name: 'group_repos', group_id: this.group_id}); }, parse: function(data) { diff --git a/static/scripts/app/views/group.js b/static/scripts/app/views/group.js index 5db96cad59..068954341a 100644 --- a/static/scripts/app/views/group.js +++ b/static/scripts/app/views/group.js @@ -81,7 +81,7 @@ define([ this.$tabs.show(); this.$table.hide(); this.repos.setGroupID(group_id); - this.repos.fetch({reset: true}); + this.repos.fetch({reset: true, data: {from: 'web'}}); this.$loadingTip.show(); },