Fixed bug in ad posting

This commit is contained in:
Mr. Stallion 2019-06-07 16:45:34 -05:00
parent 500693cbd0
commit 8115340ddd
1 changed files with 4 additions and 3 deletions

View File

@ -256,10 +256,11 @@
openProfileInBrowser(): void { openProfileInBrowser(): void {
electron.remote.shell.openExternal(`https://www.f-list.net/c/${this.profileName}`); 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.
// this.profileName // this.profileName
const character = core.characters.get(this.profileName); const character = core.characters.get(this.profileName);
@ -267,7 +268,7 @@
conversation.show(); conversation.show();
this.$refs.profileViewer.hide(); (this.$refs.profileViewer as any).hide();
} }
get styling(): string { get styling(): string {