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; }