Added relation picker dialog

This commit is contained in:
2025-01-16 14:48:06 +01:00
parent fc85425189
commit 9d9f0ef7e4
13 changed files with 371 additions and 229 deletions

View File

@@ -44,6 +44,10 @@ builder.Services.AddHopFrame(options => {
context.Table<Post>()
.Property(p => p.Id)
.SetDisplayName("ID");
context.Table<Post>()
.Property(p => p.Author)
.IsRelation(true);
});
});