@if (Selected is not null)
{
-
}
diff --git a/src/EventLogExpert.UI/Dashboard/ScenarioBrowserPanel.razor.cs b/src/EventLogExpert.UI/Dashboard/ScenarioBrowserPanel.razor.cs
index 671faa02..64ff07ff 100644
--- a/src/EventLogExpert.UI/Dashboard/ScenarioBrowserPanel.razor.cs
+++ b/src/EventLogExpert.UI/Dashboard/ScenarioBrowserPanel.razor.cs
@@ -17,16 +17,18 @@ public sealed partial class ScenarioBrowserPanel : IAsyncDisposable
private ElementReference _scenarioBrowserRootRef;
private IJSObjectReference? _scrollSuppressorModule;
- [Parameter][EditorRequired] public string ElevationReasonId { get; set; } = string.Empty;
-
[Parameter] public bool IsBusy { get; set; }
[Parameter][EditorRequired] public Func
IsFavored { get; set; } = static _ => false;
+ [Parameter][EditorRequired] public Func IsLivePresent { get; set; } = static _ => true;
+
[Parameter][EditorRequired] public Func IsScenarioDisabled { get; set; } = static _ => false;
[Parameter] public EventCallback OnLaunch { get; set; }
+ [Parameter] public EventCallback OnLaunchFromFolder { get; set; }
+
[Parameter] public EventCallback OnSelect { get; set; }
[Parameter] public EventCallback OnToggleFavorite { get; set; }
diff --git a/src/EventLogExpert.UI/Dashboard/ScenarioDetail.razor b/src/EventLogExpert.UI/Dashboard/ScenarioDetail.razor
index b8f644dc..e17cab11 100644
--- a/src/EventLogExpert.UI/Dashboard/ScenarioDetail.razor
+++ b/src/EventLogExpert.UI/Dashboard/ScenarioDetail.razor
@@ -18,9 +18,9 @@
@if (Scenario.RequiresAdmin)
{
-
+
- Requires administrator
+ Live launch requires administrator.
}
@@ -41,13 +41,19 @@
}