Chore: Update backend dependencies in bulk (#7656)

This commit is contained in:
Trenton H
2024-09-08 13:03:38 -07:00
committed by GitHub
parent 3df8be0bc7
commit 3813dc2e18
7 changed files with 1411 additions and 1214 deletions

View File

@@ -29,7 +29,7 @@ export class UsernamePipe implements PipeTransform {
transform(userID: number): string {
return this.users
? this.getName(this.users.find((u) => u.id === userID)) ?? ''
? (this.getName(this.users.find((u) => u.id === userID)) ?? '')
: $localize`Shared`
}