Update On Thu Oct 10 20:36:58 CEST 2024

This commit is contained in:
github-action[bot]
2024-10-10 20:36:59 +02:00
parent 8a4e08c276
commit 269e286871
1475 changed files with 16877 additions and 7791 deletions

View File

@@ -36,13 +36,13 @@ namespace ServiceLib.ViewModels
x => x.SelectedSource,
selectedSource => selectedSource != null && !selectedSource.id.IsNullOrEmpty());
SubAddCmd = ReactiveCommand.Create(() =>
SubAddCmd = ReactiveCommand.CreateFromTask(async () =>
{
EditSubAsync(true);
await EditSubAsync(true);
});
SubDeleteCmd = ReactiveCommand.Create(() =>
SubDeleteCmd = ReactiveCommand.CreateFromTask(async () =>
{
DeleteSubAsync();
await DeleteSubAsync();
}, canEditRemove);
SubEditCmd = ReactiveCommand.CreateFromTask(async () =>
{