Skip to content

Commit

Permalink
chore: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk committed Nov 12, 2023
1 parent 59454c6 commit 52b784a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/form/widgets/tag/widget.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { NgTemplateOutlet } from '@angular/common';
import { Component, ViewEncapsulation } from '@angular/core';
import { FormsModule } from '@angular/forms';

Expand Down Expand Up @@ -48,7 +49,7 @@ import type { SFTagWidgetSchema } from './schema';
preserveWhitespaces: false,
encapsulation: ViewEncapsulation.None,
standalone: true,
imports: [FormsModule, DelonFormModule, NzTagModule, NzIconModule]
imports: [FormsModule, NgTemplateOutlet, DelonFormModule, NzTagModule, NzIconModule]
})
export class TagWidget extends ControlUIWidget<SFTagWidgetSchema> {
static readonly KEY = 'tag';
Expand Down

0 comments on commit 52b784a

Please sign in to comment.