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
Copy file name to clipboardExpand all lines: insights/templates/insights/dashboard.html
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,11 @@
42
42
</article>
43
43
44
44
<divclass="chart-inner p-5 w-full">
45
-
{% if panel.layout == 'split_top' %}
45
+
{% if panel.id == 'overview_panel' %}
46
+
{% include 'insights/components/overview_panel_content.html' with panel=panel %}
47
+
{% elif panel.id == 'data_quality_panel' %}
48
+
{% include 'insights/components/data_quality_panel_content.html' with panel=panel %}
49
+
{% elif panel.layout == 'split_top' %}
46
50
{% include 'insights/components/package_panel_donuts.html' with panel=panel %}
47
51
{% for chart in panel.charts|slice:"2:" %}
48
52
{% include 'insights/components/chart_card.html' with chart=chart current_panel_id=current_panel_id search_query=search_query search_error=search_error %}
0 commit comments