diff options
| author | shpuld <shp@cock.li> | 2018-12-18 22:09:27 +0200 |
|---|---|---|
| committer | shpuld <shp@cock.li> | 2018-12-18 22:09:27 +0200 |
| commit | 640a28789222035f8d500b8dd4bfc4c9f0cdd1af (patch) | |
| tree | de6e7a72f0a90b8196b1bf99ac0fe4cd5bfe39a2 /src/components/user_card_content/user_card_content.js | |
| parent | bd2ed617a740ef3b37dedf3bed608e433dc0ec09 (diff) | |
| parent | 2f28bf95fdce6a215961fe264c236c111e4a1e66 (diff) | |
Merge branch 'develop' into feature/replace-panel-switcher
Diffstat (limited to 'src/components/user_card_content/user_card_content.js')
| -rw-r--r-- | src/components/user_card_content/user_card_content.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/user_card_content/user_card_content.js b/src/components/user_card_content/user_card_content.js index 206dba88..75185053 100644 --- a/src/components/user_card_content/user_card_content.js +++ b/src/components/user_card_content/user_card_content.js @@ -1,5 +1,6 @@ import StillImage from '../still-image/still-image.vue' import { hex2rgb } from '../../services/color_convert/color_convert.js' +import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator' export default { props: [ 'user', 'switcher', 'selected', 'hideBio', 'activatePanel' ], @@ -177,6 +178,9 @@ export default { if (target.tagName === 'A') { window.open(target.href, '_blank') } + }, + userProfileLink (user) { + return generateProfileLink(user.id, user.screen_name) } } } |
