From ebb435341d20a08a49985e70471f4f369d1a96cd Mon Sep 17 00:00:00 2001 From: OCDkirby Date: Sun, 9 Jul 2023 15:18:49 -0500 Subject: [PATCH] Fix site title --- index.html | 2 +- src/App.vue | 3 --- src/components/TopBarMenu.vue | 11 ++++++++++- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index b1c5b1a..65d9047 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,7 @@ - Vite App + RPCSX - PS4 Emulator
diff --git a/src/App.vue b/src/App.vue index 4804479..3fb1d7d 100644 --- a/src/App.vue +++ b/src/App.vue @@ -119,9 +119,6 @@ import './assets/logo-light.png'; - - document.title = 'RPCSX - PS4 Emulator'; - /** * @type import('naive-ui').GlobalThemeOverrides */ diff --git a/src/components/TopBarMenu.vue b/src/components/TopBarMenu.vue index b925c15..2b87f45 100644 --- a/src/components/TopBarMenu.vue +++ b/src/components/TopBarMenu.vue @@ -73,7 +73,16 @@ import { NIcon } from 'naive-ui' ] }, { - label: 'discuss', + label: () => + h( + 'a', + { + href: 'https://discord.com/invite/mx8FbxN5', + target: '_blank', + rel: 'noopenner noreferrer' + }, + 'discuss' + ), key: 'discuss', icon: renderIcon(DiscordIcon) }