We are confidence enough that the data will be saved to the db, so lets change how we update the UI, so instead of wating on the db call to complete, we will just update the UI while the db call is in progress

This commit is contained in:
TheXamlGuy
2024-05-22 20:13:50 +01:00
parent 0d7cb192d5
commit 9c8c7bf889
9 changed files with 46 additions and 55 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ public partial class ItemNavigationViewModel(IServiceProvider provider,
IDisposer disposer,
IContentTemplate template,
NamedComponent named,
int id,
Guid id,
string? name = "",
string? description = "",
bool selected = false,
@@ -36,7 +36,7 @@ public partial class ItemNavigationViewModel(IServiceProvider provider,
private bool favourite = favourite;
[ObservableProperty]
private int id = id;
private Guid id = id;
[ObservableProperty]
private string? name = name;