From 5102099a8b7770263205d4c428280f6c5a1855d1 Mon Sep 17 00:00:00 2001 From: HuskyTeufel Date: Sun, 16 Jan 2022 14:00:27 +0100 Subject: [PATCH] Negation was Wrong --- ui/src/app/besucher/besucher.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/app/besucher/besucher.component.ts b/ui/src/app/besucher/besucher.component.ts index 588a911..1f82a71 100644 --- a/ui/src/app/besucher/besucher.component.ts +++ b/ui/src/app/besucher/besucher.component.ts @@ -27,7 +27,7 @@ export class BesucherComponent implements OnInit { kommt: string[] = ['Ja','Nein']; constructor(private besucherService: BesucherService) { - this.active = environment.production; + this.active = !environment.production; } ngOnInit(): void {