Added editor functionallity + propper enum rendering
All checks were successful
HopFrame CI / build (push) Successful in 56s
HopFrame CI / test (push) Successful in 59s

This commit is contained in:
2026-02-28 14:32:00 +01:00
parent 0a00146a35
commit e3bd34d6ec
7 changed files with 197 additions and 34 deletions

View File

@@ -23,7 +23,8 @@ builder.Services.AddHopFrame(config => {
table.SetDescription("The user dataset. It contains all information for the users of the application.");
table.Property(u => u.Password)
.Listable(false);
.Listable(false)
.SetType(PropertyType.Password);
table.SetPreferredProperty(u => u.Username);
});