Files
habitica/website/client/components/userMenu/profilePage.vue
Keith Holliday 65aabc8333 More fixes (#9006)
* Reset user when clicking profile nav

* Added editprofile

* Add scroll to conversations and scroll to bottom on messages

* Fixed profile click

* Added notification mixin

* Fixed challenge edit assignment

* Guild list item now returns summary

* Fixed tier icons

* Fixed quest invitaion check

* Fixed extra loading of party members in modals

* Removed background from avatar in tutorial

* Changed port back

* Fixed task adding
2017-08-30 15:19:17 -06:00

19 lines
383 B
Vue

<template lang="pug">
div
// @TODO: profile modal is pulled in on the header. So.. seems a little odd to depend on it that way, but for now let's depend
</template>
<script>
import profile from './profile';
export default {
components: {
profile,
},
mounted () {
this.$store.state.profileUser = {};
this.$root.$emit('show::modal', 'profile');
},
};
</script>