From 8115340ddde44a652c53388c950046b36ddf2794 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" <mrstallion@nobody.nowhere.fauxemail.ext> Date: Fri, 7 Jun 2019 16:45:34 -0500 Subject: [PATCH] Fixed bug in ad posting --- electron/Index.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/electron/Index.vue b/electron/Index.vue index 1665b4f..64ae8b3 100644 --- a/electron/Index.vue +++ b/electron/Index.vue @@ -256,10 +256,11 @@ openProfileInBrowser(): void { electron.remote.shell.openExternal(`https://www.f-list.net/c/${this.profileName}`); - this.$refs.profileViewer.hide(); + + (this.$refs.profileViewer as any).hide(); } - openConversation(a?: any, b?: any, c?: any): void { + openConversation(): void { //this. // this.profileName const character = core.characters.get(this.profileName); @@ -267,7 +268,7 @@ conversation.show(); - this.$refs.profileViewer.hide(); + (this.$refs.profileViewer as any).hide(); } get styling(): string {