From a96e6446012bede27ed318c424d6e0e933f96e35 Mon Sep 17 00:00:00 2001 From: Sebastian Stehle Date: Mon, 18 Sep 2017 18:47:09 +0200 Subject: [PATCH] Boolean default fixed. --- .../app/framework/angular/indeterminate-value.directive.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Squidex/app/framework/angular/indeterminate-value.directive.ts b/src/Squidex/app/framework/angular/indeterminate-value.directive.ts index 8cec0c565..4112d0232 100644 --- a/src/Squidex/app/framework/angular/indeterminate-value.directive.ts +++ b/src/Squidex/app/framework/angular/indeterminate-value.directive.ts @@ -28,7 +28,7 @@ export class IndeterminateValueDirective implements ControlValueAccessor { ) { } - @HostListener('change', ['$event.target.value']) + @HostListener('change', ['$event.target.checked']) public onChange(value: any) { this.callChange(value); }