Fix bug
This commit is contained in:
parent
2560d3d1c1
commit
48d540e9f4
4 changed files with 6 additions and 6 deletions
|
|
@ -10,6 +10,6 @@ Vue.filter('userName', user => {
|
|||
return getUserName(user);
|
||||
});
|
||||
|
||||
Vue.filter('userPage', user => {
|
||||
return '/@' + Vue.filter('acct')(user);
|
||||
Vue.filter('userPage', (user, path?) => {
|
||||
return '/@' + Vue.filter('acct')(user) + (path ? '/' + path : '');
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue