uppercase kind

Signed-off-by: Ainhoa Larumbe <ainhoaL@users.noreply.github.com>
This commit is contained in:
Ainhoa Larumbe
2021-11-22 11:44:54 +00:00
parent 73438d1ff1
commit e5bff80f78
@@ -82,7 +82,7 @@ export class DefaultCatalogCollator implements DocumentCollator {
}
private isUserEntity(entity: Entity): entity is UserEntity {
return entity.kind === 'User';
return entity.kind.toUpperCase() === 'USER';
}
private getDocumentText(entity: Entity): string {