Can set member biography

This commit is contained in:
2023-08-11 11:38:16 +02:00
parent 501f36e7ca
commit a062f27b0b
3 changed files with 29 additions and 3 deletions

View File

@ -159,6 +159,10 @@ export class Member implements MemberDataApi {
? true
: false;
}
get hasNote(): boolean {
return (this.note?.length ?? 0) > 0;
}
}
export function fmtDate(d?: DateValue): string {