mirror of
https://github.com/Pandipipas/scoreko-dev.git
synced 2026-06-06 03:32:06 +00:00
fix(about): update repository owner and name in About.vue
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<script setup lang="ts">
|
||||
import { computed, onMounted, ref } from 'vue';
|
||||
import { useHead } from '@unhead/vue';
|
||||
import { computed, onMounted, ref } from 'vue';
|
||||
|
||||
defineOptions({ name: 'AboutView' });
|
||||
|
||||
@@ -15,8 +15,8 @@ type ReleaseResponse = {
|
||||
|
||||
const appName = 'Scoreko Dev';
|
||||
const currentVersion = import.meta.env.PACKAGE_VERSION;
|
||||
const repoOwner = ref(localStorage.getItem('scoreko:repoOwner') ?? 'zoton2');
|
||||
const repoName = ref(localStorage.getItem('scoreko:repoName') ?? 'nodecg-vue-ts-template');
|
||||
const repoOwner = ref(localStorage.getItem('scoreko:repoOwner') ?? 'Pandipipas');
|
||||
const repoName = ref(localStorage.getItem('scoreko:repoName') ?? 'scoreko-dev');
|
||||
|
||||
const checkingUpdates = ref(false);
|
||||
const updateError = ref('');
|
||||
|
||||
Reference in New Issue
Block a user