Uncomment Code that was due to a local stale extension

This commit is contained in:
Michael Hawker
2024-12-09 23:53:34 -08:00
parent c4b930c6d9
commit 25550fb756

View File

@@ -80,11 +80,11 @@ public partial class CommandItemViewModel : ExtensionObjectViewModel
Title = model.Title;
Subtitle = model.Subtitle;
IconUri = model.Icon.Icon;
/*MoreCommands = model.MoreCommands
MoreCommands = model.MoreCommands
.Where(contextItem => contextItem is ICommandContextItem)
.Select(contextItem => (contextItem as ICommandContextItem)!)
.Select(contextItem => new CommandContextItemViewModel(contextItem, Scheduler))
.ToList();*/
.ToList();
// Here, we're already theoretically in the async context, so we can
// use Initialize straight up