Made search suggestions togglable

This commit is contained in:
2025-07-05 15:19:35 +02:00
parent 66d03513eb
commit c5388fc044
5 changed files with 26 additions and 27 deletions

View File

@@ -51,6 +51,9 @@ builder.Services.AddHopFrame(options => {
.FormatEach<Post>((post, _) => post.Caption);
});
context.Table<Post>()
.ShowSearchSuggestions(false);
context.Table<Post>()
.Property(p => p.Author)
//.Format((user, _) => $"{user.FirstName} {user.LastName}")