Commit 29b8534d authored by Lyza Danger Gardner's avatar Lyza Danger Gardner

Change `group.url` to `group.links.html`

parent 18f59a97
......@@ -54,19 +54,25 @@ describe('groupList', function () {
groups = [{
id: 'public',
links: {
html: OPEN_GROUP_LINK,
},
name: 'Public Group',
type: 'open',
url: OPEN_GROUP_LINK,
},{
id: 'h-devs',
links: {
html: PRIVATE_GROUP_LINK,
},
name: 'Hypothesis Developers',
type: 'private',
url: PRIVATE_GROUP_LINK,
}, {
id: 'restricto',
links: {
html: RESTRICTED_GROUP_LINK,
},
name: 'Hello Restricted',
type: 'restricted',
url: RESTRICTED_GROUP_LINK,
}];
fakeGroups = {
......
......@@ -45,7 +45,7 @@
</div>
<div class="share-link-container" ng-click="$event.stopPropagation()" ng-if="!vm.isThirdPartyService">
<a class="share-link"
href="{{group.url}}"
href="{{group.links.html}}"
target="_blank"
ng-click="vm.viewGroupActivity()">
View group activity
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment