You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix: Replace remaining _review_button calls with _review_form
Replace all remaining _review_button function calls with _review_form
to fix generate-and-commit workflow failure. All analysis tabs now
use the in-dashboard review form system.
Fixes workflow error where old function calls caused generation to fail.
Copy file name to clipboardExpand all lines: Graph Analysis/unified_analysis.py
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -495,7 +495,7 @@ def write_html_report(
495
495
<!-- Field Degree Tab -->
496
496
<div id="field-degree" class="tab-pane">
497
497
<h2>JSON Field Degree Analysis</h2>
498
-
"""+_review_button("field-degree") +"""
498
+
"""+_review_form("field-degree") +"""
499
499
<p class="explanation">Fields are connected when they appear together inside the same JSON object; a field's degree is the number of distinct fields it co-occurs with.</p>
500
500
501
501
<h3>Top Fields by Degree</h3>
@@ -529,7 +529,7 @@ def write_html_report(
529
529
<!-- Path Structure Tab -->
530
530
<div id="path-structure" class="tab-pane">
531
531
<h2>JSON Path Structure Analysis</h2>
532
-
"""+_review_button("path-structure") +"""
532
+
"""+_review_form("path-structure") +"""
533
533
<p class="explanation">Each JSON path represents a unique nested route (keys/array indices); depth shows how deeply information is nested.</p>
534
534
535
535
<ul class="summary-list">
@@ -563,7 +563,7 @@ def write_html_report(
563
563
<!-- Centrality Tab -->
564
564
<div id="centrality" class="tab-pane">
565
565
<h2>Field Centrality (Co-occurrence)</h2>
566
-
"""+_review_button("centrality") +"""
566
+
"""+_review_form("centrality") +"""
567
567
<p class="explanation">Centrality scores highlight fields that are well-connected (degree), act as bridges (betweenness), are close to others (closeness), or connect to other influential fields (eigenvector).</p>
568
568
569
569
<table>
@@ -589,7 +589,7 @@ def write_html_report(
589
589
<!-- Clustering Tab -->
590
590
<div id="clustering" class="tab-pane">
591
591
<h2>Clustering (Field Co-occurrence Graph)</h2>
592
-
"""+_review_button("clustering") +"""
592
+
"""+_review_form("clustering") +"""
593
593
<p class="explanation">Clustering measures how tightly a field's neighbors are connected to each other (higher means more triads).</p>
0 commit comments