diff options
| author | eris <femmediscord@gmail.com> | 2021-07-22 20:46:41 +0000 |
|---|---|---|
| committer | eris <femmediscord@gmail.com> | 2021-07-22 20:46:41 +0000 |
| commit | 179af131ee31cee6bb55554460af048556a1c5be (patch) | |
| tree | 83f2cbe1f58e6b04754e5b0ebebf069b3a0bfe37 /src/components/user_card/user_card.js | |
| parent | 6125dc885ab834762989c77d8bf7be7f6b6e1b40 (diff) | |
| parent | 425919a0d292b79869ebefd2a4d52ed4db45d319 (diff) | |
Fix changelog merge conflict
# Conflicts:
# CHANGELOG.md
Diffstat (limited to 'src/components/user_card/user_card.js')
| -rw-r--r-- | src/components/user_card/user_card.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/components/user_card/user_card.js b/src/components/user_card/user_card.js index d9fb64d1..367fbc6c 100644 --- a/src/components/user_card/user_card.js +++ b/src/components/user_card/user_card.js @@ -12,14 +12,16 @@ import { faBell, faRss, faSearchPlus, - faExternalLinkAlt + faExternalLinkAlt, + faEdit } from '@fortawesome/free-solid-svg-icons' library.add( faRss, faBell, faSearchPlus, - faExternalLinkAlt + faExternalLinkAlt, + faEdit ) export default { @@ -153,6 +155,9 @@ export default { this.$store.state.instance.restrictedNicknames ) }, + openProfileTab () { + this.$store.dispatch('openSettingsModalTab', 'profile') + }, zoomAvatar () { const attachment = { url: this.user.profile_image_url_original, |
