Skip to content

Commit

Permalink
FIX: Use updated routes to link user profiles (#60)
Browse files Browse the repository at this point in the history
FIX links to user profiles from the old route `/users/` to the new route `/u/`.
  • Loading branch information
rishabhnambiar committed Aug 18, 2020
1 parent 8bdfd84 commit fe42093
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -201,7 +201,7 @@
</td>
<td class="query-created-by">
{{#if query.username}}
<a href="/users/{{query.username}}/activity">
<a href="/u/{{query.username}}/activity">
<medium>{{query.username}}</medium>
</a>
{{/if}}
Expand Down
@@ -1,5 +1,5 @@
{{#if user}}
<a href="{{baseuri}}/users/{{user.username}}/activity"
<a href="{{baseuri}}/u/{{user.username}}/activity"
data-user-card="{{user.username}}">{{avatar user imageSize="tiny"}} {{user.username}}</a>
{{else}}
{{id}}
Expand Down

0 comments on commit fe42093

Please sign in to comment.