From 6764ae5e3bb3c6695ac9ddb178a8d187d81b42c8 Mon Sep 17 00:00:00 2001 From: swapnil-verma-gl <92505353+swapnil-verma-gl@users.noreply.github.com> Date: Thu, 30 May 2024 09:43:37 +0530 Subject: [PATCH] Added missing import for uppercase pipe (#9748) --- lib/core/src/lib/form/components/form-renderer.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/core/src/lib/form/components/form-renderer.component.ts b/lib/core/src/lib/form/components/form-renderer.component.ts index 6ca6c30e085..196a68d8391 100644 --- a/lib/core/src/lib/form/components/form-renderer.component.ts +++ b/lib/core/src/lib/form/components/form-renderer.component.ts @@ -15,7 +15,7 @@ * limitations under the License. */ -import { JsonPipe, NgClass, NgForOf, NgIf, NgStyle, NgTemplateOutlet } from '@angular/common'; +import { JsonPipe, NgClass, NgForOf, NgIf, NgStyle, NgTemplateOutlet, UpperCasePipe } from '@angular/common'; import { Component, Inject, Injector, Input, OnDestroy, OnInit, ViewEncapsulation } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { MatButtonModule } from '@angular/material/button'; @@ -54,6 +54,7 @@ import { ContainerModel, FormFieldModel, FormModel, TabModel } from './widgets'; MatSlideToggleModule, FormsModule, JsonPipe, + UpperCasePipe, NgClass ], encapsulation: ViewEncapsulation.None