We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9bc527 commit 575cbc1Copy full SHA for 575cbc1
frontend/src/app/components/key-result-type/key-result-type.component.ts
@@ -143,9 +143,9 @@ export class KeyResultTypeComponent implements AfterContentInit {
143
}
144
145
146
- setFormControlValueToZero(formGroupMetric: any, form_control: string) {
147
- if (formGroupMetric.get(form_control) && !formGroupMetric.get(form_control).value) {
148
- formGroupMetric.get(form_control)
+ setFormControlValueToZero(formGroupMetric: any, formControl: string) {
+ if (formGroupMetric.get(formControl) && !formGroupMetric.get(formControl).value) {
+ formGroupMetric.get(formControl)
149
.setValue(0, { emitEvent: false });
150
151
0 commit comments