This commit is contained in:
TheXamlGuy
2024-07-17 21:43:58 +01:00
parent eae11dc260
commit 9daebc7ba2
124 changed files with 233 additions and 247 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ public class PinEntryViewModelHandler(IServiceFactory serviceFactory) :
string? value = $"{configuration.Value}" ?? "";
double? width = configuration.Width;
if (serviceFactory.Create<PinEntryViewModel>(args => args.Initialize(),
if (serviceFactory.Create<PinEntryViewModel>(args => args.Initialize(),
[.. args.Parameters, configuration, label, value, true, false, width])
is PinEntryViewModel viewModel)
{
@@ -24,4 +24,4 @@ public class PinEntryViewModelHandler(IServiceFactory serviceFactory) :
return Task.FromResult<IItemEntryViewModel?>(default);
}
}
}