diff --git a/components/tailored/messaging/message/reactions/Reactions.vue b/components/tailored/messaging/message/reactions/Reactions.vue index 4fcb0408cd..635a39fb41 100644 --- a/components/tailored/messaging/message/reactions/Reactions.vue +++ b/components/tailored/messaging/message/reactions/Reactions.vue @@ -104,7 +104,7 @@ export default Vue.extend({ * @example */ didIReact(reaction: any) { - return reaction.reactors.includes(this.$mock.user.name) + return reaction.reactors.includes(this.$store.state.accounts.details.textilePubkey) }, getReactorsList(reactors: string[], limit = 3) { const numberOfReactors = reactors.length diff --git a/components/tailored/settings/Sidebar.vue b/components/tailored/settings/Sidebar.vue index aa4b303711..08775296b3 100644 --- a/components/tailored/settings/Sidebar.vue +++ b/components/tailored/settings/Sidebar.vue @@ -87,6 +87,10 @@ export default Vue.extend({ to: 'notifications', text: 'Notifications', }, + { + to: 'info', + text: 'App Info', + }, ] as Array, } as SidebarGrouping, ], diff --git a/components/tailored/settings/modal/Modal.html b/components/tailored/settings/modal/Modal.html index 46ca585730..c0a2ee58ef 100644 --- a/components/tailored/settings/modal/Modal.html +++ b/components/tailored/settings/modal/Modal.html @@ -19,6 +19,7 @@ + diff --git a/components/tailored/settings/pages/developer/Developer.html b/components/tailored/settings/pages/developer/Info.html similarity index 100% rename from components/tailored/settings/pages/developer/Developer.html rename to components/tailored/settings/pages/developer/Info.html diff --git a/components/tailored/settings/pages/developer/index.vue b/components/tailored/settings/pages/developer/index.vue index 2b3b4ad9ce..1f198d846e 100644 --- a/components/tailored/settings/pages/developer/index.vue +++ b/components/tailored/settings/pages/developer/index.vue @@ -1,11 +1,11 @@ -