Browse Source

fix(client): remove CommonModule from footer

pull/5401/head
KenTandrian 2 months ago
parent
commit
6edc8c7a9e
  1. 3
      apps/client/src/app/components/dialog-footer/dialog-footer.component.ts

3
apps/client/src/app/components/dialog-footer/dialog-footer.component.ts

@ -1,4 +1,3 @@
import { CommonModule } from '@angular/common';
import { import {
ChangeDetectionStrategy, ChangeDetectionStrategy,
Component, Component,
@ -14,7 +13,7 @@ import { close } from 'ionicons/icons';
@Component({ @Component({
changeDetection: ChangeDetectionStrategy.OnPush, changeDetection: ChangeDetectionStrategy.OnPush,
host: { class: 'justify-content-center' }, host: { class: 'justify-content-center' },
imports: [CommonModule, IonIcon, MatButtonModule], imports: [IonIcon, MatButtonModule],
selector: 'gf-dialog-footer', selector: 'gf-dialog-footer',
styleUrls: ['./dialog-footer.component.scss'], styleUrls: ['./dialog-footer.component.scss'],
templateUrl: './dialog-footer.component.html' templateUrl: './dialog-footer.component.html'

Loading…
Cancel
Save