From 743ee3f13f0281170c48e23f4e081f46f20be06c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= <40151420+ldericher@users.noreply.github.com> Date: Tue, 13 Sep 2022 01:53:00 +0000 Subject: [PATCH] prop defaults --- ui/src/components/TitleBar.vue | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/ui/src/components/TitleBar.vue b/ui/src/components/TitleBar.vue index 64dd850..d3f72a9 100644 --- a/ui/src/components/TitleBar.vue +++ b/ui/src/components/TitleBar.vue @@ -38,19 +38,13 @@ import THWLogo from "./THWLogo.vue"; }, }) export default class TitleBar extends Vue { - @Prop({ - default: "Technisches Hilfswerk", - }) + @Prop({ default: "Technisches Hilfswerk" }) private readonly logo_above!: string; - @Prop({ - default: "OV Musterstadt", - }) + @Prop({ default: "OV Musterstadt" }) private readonly logo_below!: string; - @Prop({ - default: "TITLE", - }) + @Prop({ default: "TITLE" }) private readonly title!: string; }