Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFront <27463495+Frontesque@users.noreply.github.com>2022-01-11 02:09:56 +0300
committerFront <27463495+Frontesque@users.noreply.github.com>2022-01-11 02:09:56 +0300
commit128c3a56548938a3615ef5e60657ac15ba6e7865 (patch)
treea1e51ecd07c90dd32ac0858cbc730f1d06487c58
parent1184697f63b21a83541ecf3ac3d9857799f20000 (diff)
fix debugger
-rw-r--r--Website/pages/debug.vue5
1 files changed, 3 insertions, 2 deletions
diff --git a/Website/pages/debug.vue b/Website/pages/debug.vue
index 17125d5..1f4d327 100644
--- a/Website/pages/debug.vue
+++ b/Website/pages/debug.vue
@@ -1,6 +1,5 @@
<template>
<div>
- <div id="extension-version" />
<v-stepper :value="progress" class="mt-12" outlined max-width="800px">
<v-stepper-header>
@@ -130,12 +129,14 @@
},
mounted() {
+ const vm = this;
+
//--- Wait ---//
setTimeout(() => {
this.$axios.$get('https://raw.githubusercontent.com/Anarios/return-youtube-dislike/main/Extensions/combined/manifest-chrome.json')
.then(res => {
- console.log(res)
+ this.userInformation.extension.latestExtensionVersion = res.version;
})