fix eslint errors
This commit is contained in:
parent
7272130f7a
commit
7367c31d37
@ -69,7 +69,7 @@ export abstract class EntitiesMapService<Interface, Class extends Entity<Interfa
|
||||
|
||||
// Emit observables only after entities have been updated
|
||||
|
||||
if(changedEntities.length || deletedEntities.length) {
|
||||
if (changedEntities.length || deletedEntities.length) {
|
||||
this.#entitiesChanged$.next(true);
|
||||
}
|
||||
|
||||
@ -115,7 +115,7 @@ export abstract class EntitiesMapService<Interface, Class extends Entity<Interfa
|
||||
return this.#entityChanged$.pipe(
|
||||
startWith(this.get(key)),
|
||||
map(entities => entities as Class[]),
|
||||
map(entities => !!entities.length)
|
||||
map(entities => !!entities.length),
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@ -10,6 +10,6 @@ const components = [UploadFileComponent, DragDropFileUploadDirective];
|
||||
@NgModule({
|
||||
declarations: [...components],
|
||||
exports: [...components],
|
||||
imports: [MatIconModule, CommonModule, TranslateModule]
|
||||
imports: [MatIconModule, CommonModule, TranslateModule],
|
||||
})
|
||||
export class IqserUploadFileModule {}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user