Display aliases in the UI, allow adding and removing aliases from the Person Edit modal

Adds forgotten translation string
This commit is contained in:
Amelia 2025-05-06 19:51:28 +02:00
parent c36123a58f
commit d1c5f4a377
No known key found for this signature in database
GPG key ID: D6D0ECE365407EAA
21 changed files with 228 additions and 18 deletions

View file

@ -21,6 +21,7 @@ export enum PersonRole {
export interface Person extends IHasCover {
id: number;
name: string;
aliases: string[];
description: string;
coverImage?: string;
coverImageLocked: boolean;