+
- @this.Description
+ @(this.Description)
@if (this.Body is not null)
{
- @this.Body
+ @(this.Body)
}
-
+
@if (this.ShowDedicatedProgress && this.isProcessing)
{
@@ -26,7 +26,7 @@
@if (this.ShowResult && this.resultingContentBlock is not null)
{
-
+
}
@@ -56,9 +56,9 @@
case SendToButton sendToButton:
- @foreach (var assistant in Enum.GetValues().OrderBy(n => n.Name().Length))
+ @foreach (var assistant in Enum.GetValues().OrderBy(n => n.Name().Length))
{
- if(assistant is Pages.SendToAssistant.NONE || sendToButton.Self == assistant)
+ if(assistant is SendTo.NONE || sendToButton.Self == assistant)
continue;
@@ -69,6 +69,9 @@
break;
}
}
+
+ Reset
+
}