Skip to content

Commit

Permalink
Added missing import for uppercase pipe (#9748)
Browse files Browse the repository at this point in the history
  • Loading branch information
swapnil-verma-gl authored and VitoAlbano committed Jul 1, 2024
1 parent 75b54b0 commit 5c0ae30
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/core/src/lib/form/components/form-renderer.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -54,6 +54,7 @@ import { ContainerModel, FormFieldModel, FormModel, TabModel } from './widgets';
MatSlideToggleModule,
FormsModule,
JsonPipe,
UpperCasePipe,
NgClass
],
encapsulation: ViewEncapsulation.None
Expand Down

0 comments on commit 5c0ae30

Please sign in to comment.