From 0ef5d72275b037c3794ca00dcac3e97ba1fddef9 Mon Sep 17 00:00:00 2001 From: YouHaveTrouble Date: Sun, 14 Jul 2024 23:45:26 +0200 Subject: [PATCH] fix up some things --- .github/workflows/deploy.yml | 2 +- src/App.vue | 1 + src/components/GatheringNode.vue | 13 ++++++++++++- src/components/SortedNodeList.vue | 8 +++++++- src/entities/Item.ts | 11 ----------- src/entities/Node.ts | 1 + 6 files changed, 22 insertions(+), 14 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 16e943b..a9e7052 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,4 +13,4 @@ jobs: with: username: 'YouHaveTrouble' reponame: 'DiscipleOfLand' - token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + token: ${{ secrets.GITHUB_TOKEN }} diff --git a/src/App.vue b/src/App.vue index e088964..b43803d 100644 --- a/src/App.vue +++ b/src/App.vue @@ -56,6 +56,7 @@ export default defineComponent({ } }, async mounted() { + this.eorzeaTime = new EorzeaTime(); setInterval(() => { this.eorzeaTime = new EorzeaTime(); }, 500); diff --git a/src/components/GatheringNode.vue b/src/components/GatheringNode.vue index 18c9ff1..b5f2595 100644 --- a/src/components/GatheringNode.vue +++ b/src/components/GatheringNode.vue @@ -1,5 +1,5 @@