Browse Source
Bugfix/add missing import of entity logo component (#4960)
* Add missing import
pull/4944/head^2
Thomas Kaul
2 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
0 deletions
-
libs/ui/src/lib/entity-logo/entity-logo.component.ts
|
@ -1,3 +1,4 @@ |
|
|
|
|
|
import { CommonModule } from '@angular/common'; |
|
|
import { |
|
|
import { |
|
|
CUSTOM_ELEMENTS_SCHEMA, |
|
|
CUSTOM_ELEMENTS_SCHEMA, |
|
|
ChangeDetectionStrategy, |
|
|
ChangeDetectionStrategy, |
|
@ -9,6 +10,7 @@ import { DataSource } from '@prisma/client'; |
|
|
|
|
|
|
|
|
@Component({ |
|
|
@Component({ |
|
|
changeDetection: ChangeDetectionStrategy.OnPush, |
|
|
changeDetection: ChangeDetectionStrategy.OnPush, |
|
|
|
|
|
imports: [CommonModule], |
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA], |
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA], |
|
|
selector: 'gf-entity-logo', |
|
|
selector: 'gf-entity-logo', |
|
|
styleUrls: ['./entity-logo.component.scss'], |
|
|
styleUrls: ['./entity-logo.component.scss'], |
|
|