nvti commited on
Commit
b7db872
·
1 Parent(s): 1a35697

fix(report): move progress to output panel

Browse files
Files changed (1) hide show
  1. web/app.js +3 -1
web/app.js CHANGED
@@ -886,7 +886,6 @@ function App() {
886
  status === "running" ? "Analyzing..." : "Analyze Form",
887
  ),
888
  error ? h("div", { className: "error" }, error) : null,
889
- h(ProgressPanel, { steps: progressSteps }),
890
  ),
891
  h(
892
  "section",
@@ -920,6 +919,9 @@ function App() {
920
  h("span", null, "The annotated video appears after analysis."),
921
  ),
922
  ),
 
 
 
923
  ),
924
  ),
925
  h(ReportPanel, { result, activeTab, onTabChange: setActiveTab }),
 
886
  status === "running" ? "Analyzing..." : "Analyze Form",
887
  ),
888
  error ? h("div", { className: "error" }, error) : null,
 
889
  ),
890
  h(
891
  "section",
 
919
  h("span", null, "The annotated video appears after analysis."),
920
  ),
921
  ),
922
+ result?.annotated_video_url
923
+ ? null
924
+ : h(ProgressPanel, { steps: progressSteps }),
925
  ),
926
  ),
927
  h(ReportPanel, { result, activeTab, onTabChange: setActiveTab }),