fix(web): multiple improvements for people page (1) (#4717)

* fix(web): multiple improvements for people page

* feat: better responsive icons
This commit is contained in:
martin
2023-10-30 20:40:28 +01:00
committed by GitHub
parent 8dcd159bd6
commit 9a60578088
4 changed files with 49 additions and 35 deletions

View File

@@ -103,11 +103,7 @@ export class PersonRepository implements IPersonRepository {
return this.personRepository.findOne({ where: { id: personId } });
}
async getByName(
userId: string,
personName: string,
{ withHidden }: PersonNameSearchOptions,
): Promise<PersonEntity[]> {
getByName(userId: string, personName: string, { withHidden }: PersonNameSearchOptions): Promise<PersonEntity[]> {
const queryBuilder = this.personRepository
.createQueryBuilder('person')
.leftJoin('person.faces', 'face')