diff --git a/package.json b/package.json index 047f8c1..fe3d5ed 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "evolution-manager", - "version": "0.3.9", + "version": "0.3.10", "main": "dist", "engines": { "node": ">=16.0.0" diff --git a/src/components/instance/settings/Chatwoot.vue b/src/components/instance/settings/Chatwoot.vue index a1ed595..d06f4a6 100644 --- a/src/components/instance/settings/Chatwoot.vue +++ b/src/components/instance/settings/Chatwoot.vue @@ -136,7 +136,7 @@ - + - + Como configurar o chatwoot? diff --git a/src/store/doc.js b/src/store/doc.js index ae26da5..5aedf15 100644 --- a/src/store/doc.js +++ b/src/store/doc.js @@ -27,7 +27,6 @@ export const useDocStore = defineStore('doc', { }, async loadDoc(path) { try { - debugger; const { language } = this; const doc = this.docs[path] const content = await doc[language](); diff --git a/src/views/Doc.vue b/src/views/Doc.vue index 341c804..c2e4c5e 100644 --- a/src/views/Doc.vue +++ b/src/views/Doc.vue @@ -18,12 +18,15 @@ import { VMarkdownView } from "vue3-markdown"; import "vue3-markdown/dist/style.css"; import { useDocStore } from "@/store/doc"; +import { useTheme } from "vuetify"; + export default { components: { VMarkdownView, }, data: () => ({ drawer: false, + theme: useTheme(), lang_list: [ { title: "Português", value: "pt_br" }, { title: "English", value: "en" }, @@ -38,7 +41,6 @@ export default { try { this.loading = true; this.error = false; - debugger; const { content } = await this.DocStore.loadDoc(doc || "index"); this.content = content; } catch (e) { @@ -68,8 +70,14 @@ export default { }, }, mounted() { - debugger; this.loadDoc(this.$route.params.doc); }, }; + + \ No newline at end of file