diff --git a/electron/Index.vue b/electron/Index.vue
index 78ee6cd..1665b4f 100644
--- a/electron/Index.vue
+++ b/electron/Index.vue
@@ -49,7 +49,10 @@
- {{profileName}}
+
+ {{profileName}}
+
+
@@ -253,6 +256,18 @@
openProfileInBrowser(): void {
electron.remote.shell.openExternal(`https://www.f-list.net/c/${this.profileName}`);
+ this.$refs.profileViewer.hide();
+ }
+
+ openConversation(a?: any, b?: any, c?: any): void {
+ //this.
+ // this.profileName
+ const character = core.characters.get(this.profileName);
+ const conversation = core.conversations.getPrivate(character);
+
+ conversation.show();
+
+ this.$refs.profileViewer.hide();
}
get styling(): string {