From 16348530ee0aee834c47286f0ae468b4589c639c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= <40151420+ldericher@users.noreply.github.com> Date: Mon, 19 Sep 2022 11:55:12 +0000 Subject: [PATCH] THWLogo from API --- ui/src/components/title/THWLogo.vue | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/ui/src/components/title/THWLogo.vue b/ui/src/components/title/THWLogo.vue index 97bae63..f5e6412 100644 --- a/ui/src/components/title/THWLogo.vue +++ b/ui/src/components/title/THWLogo.vue @@ -4,12 +4,7 @@ {{ above }} - + @@ -28,6 +23,10 @@ export default class THWLogo extends Vue { @Prop({ required: true }) private readonly below!: string; + + private get logo_url(): string { + return this.$ovdashboard.api_url("file/get/logo"); + } }