Fixed up code comments for Amelia.

Fixed a bug where not all detail pages had the same size font.

Fixed series detail page not having subtitle as a themeable variable (--detail-subtitle-color).
This commit is contained in:
Joseph Milazzo 2025-05-07 19:01:03 -05:00
parent bbea28fd05
commit 9844503671
41 changed files with 200 additions and 106 deletions

View file

@ -39,11 +39,8 @@ public class PersonBuilder : IEntityBuilder<Person>
return this;
}
_person.Aliases.Add(new PersonAlias()
{
Alias = alias,
NormalizedAlias = alias.ToNormalized(),
});
_person.Aliases.Add(new PersonAliasBuilder(alias).Build());
return this;
}