From e546c7283de4abf182545cea1aa07a8de0233d3b Mon Sep 17 00:00:00 2001 From: eschcam Date: Fri, 6 Jan 2023 12:17:56 +0000 Subject: Add validation for int and float constraints Issue-ID: SDC-4316 Signed-off-by: eschcam Change-Id: I6d6172743779291597305583f2a7f4f2145f57fb --- .../properties-assignment/constraints/constraints.module.ts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'catalog-ui/src/app/ng2/pages/properties-assignment/constraints/constraints.module.ts') diff --git a/catalog-ui/src/app/ng2/pages/properties-assignment/constraints/constraints.module.ts b/catalog-ui/src/app/ng2/pages/properties-assignment/constraints/constraints.module.ts index 4f14e1f855..48ad24e112 100644 --- a/catalog-ui/src/app/ng2/pages/properties-assignment/constraints/constraints.module.ts +++ b/catalog-ui/src/app/ng2/pages/properties-assignment/constraints/constraints.module.ts @@ -19,13 +19,14 @@ import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { ConstraintsComponent } from './constraints.component'; -import { FormsModule } from '@angular/forms'; +import {FormsModule, ReactiveFormsModule} from '@angular/forms'; @NgModule({ - imports: [ - CommonModule, - FormsModule - ], + imports: [ + CommonModule, + FormsModule, + ReactiveFormsModule + ], declarations: [ConstraintsComponent], exports: [ConstraintsComponent], entryComponents: [ -- cgit 1.2.3-korg