From fbaa49be311653ed7d0765d98125e0161f140471 Mon Sep 17 00:00:00 2001 From: depilzma Date: Thu, 20 Jun 2024 13:46:10 +0200 Subject: [PATCH] Changed git hash link --- webapp/src/components/FirmwareInfo.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webapp/src/components/FirmwareInfo.vue b/webapp/src/components/FirmwareInfo.vue index 891fe2e0..4e8048a2 100644 --- a/webapp/src/components/FirmwareInfo.vue +++ b/webapp/src/components/FirmwareInfo.vue @@ -122,10 +122,10 @@ export default defineComponent({ }, versionInfoUrl(): string { if (this.systemStatus.git_is_hash) { - return 'https://github.com/tbnobody/OpenDTU/commits/' + this.systemStatus.git_hash; + return 'https://github.com/funghi999/OpenDTU-DUO-Fusion/commits/' + this.systemStatus.git_hash; } - return 'https://github.com/tbnobody/OpenDTU/releases/tag/' + this.systemStatus.git_hash; - }, + return 'https://github.com/funghi999/OpenDTU-DUO-Fusion/releases/tag/' + this.systemStatus.git_hash; + } }, });