From a08cf6ff42f9670f902d2fa1d19fe4092d7ecf06 Mon Sep 17 00:00:00 2001 From: Daniel Appelgren Date: Fri, 12 Nov 2021 10:21:21 +0100 Subject: [PATCH] Update radiobutton-group.component.ts --- libs/ui/src/radiobutton-group/radiobutton-group.component.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libs/ui/src/radiobutton-group/radiobutton-group.component.ts b/libs/ui/src/radiobutton-group/radiobutton-group.component.ts index 51488ed..fffcddf 100644 --- a/libs/ui/src/radiobutton-group/radiobutton-group.component.ts +++ b/libs/ui/src/radiobutton-group/radiobutton-group.component.ts @@ -9,7 +9,7 @@ import { OnChanges, Output, } from '@angular/core'; -import { ControlValueAccessor, NgControl, NG_VALUE_ACCESSOR } from '@angular/forms'; +import { ControlValueAccessor, NG_VALUE_ACCESSOR, NgControl } from '@angular/forms'; import { uuid } from '@utils/uuid.util'; import { RadiobuttonGroupDirection } from './radiobutton-group-direction.enum'; import { Radiobutton } from './radiobutton.model'; @@ -100,7 +100,6 @@ export class RadiobuttonGroupComponent implements ControlValueAccessor, AfterVie checkForChange(rawValue: any): void { const value = this._transformValue(rawValue); - console.log(value); if (this._value !== value) { if (this.onChange) { this.onChange(value);