Skip to content
This repository was archived by the owner on Dec 8, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/components/Toolbars/QuizBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<a href="#" v-on="menu">Get Help</a>
</template>
<v-list class="list">
<v-list-item :to="{ name: 'faq' }">
<v-list-item href="https://codewizardshq.com/challenge" target="_blank">
<v-list-item-title>Check The FAQ</v-list-item-title>
</v-list-item>
<v-list-item href="https://discord.gg/HKnpzjQ" target="_blank">
Expand All @@ -63,9 +63,9 @@
</template>

<script>
import { User, Quiz } from "@/store";
import {Quiz, User} from "@/store";

export default {
export default {
name: "quizBar",
computed: {
...User.mapState(),
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/router.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Vue from "vue";
import VueRouter from "vue-router";
import { auth } from "@/api";
import {auth} from "@/api";
import store from "@/store";

Vue.use(VueRouter);
Expand Down Expand Up @@ -47,7 +47,7 @@ const routes = [
{
path: "frequently-asked-questions",
name: "faq",
component: () => import("@/views/Public/FAQ")
beforeEnter: () => window.location = "https://codewizardshq.com/challenge"
}
]
},
Expand Down