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 10, 2024
1 parent bb8cb1e commit 6918a3b
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 6918a3b

Please sign in to comment.