From 5f5ca84f72da365bde912ea319b3537069464ec4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 30 Apr 2026 20:47:20 +0000 Subject: [PATCH] fix: use 100vh instead of fixed 750px for network graph height Agent-Logs-Url: https://github.com/soxoj/maigret/sessions/943e32b6-d0c4-44a8-a87e-0b77410edbcc Co-authored-by: soxoj <31013580+soxoj@users.noreply.github.com> --- maigret/report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maigret/report.py b/maigret/report.py index 1393678..3f79305 100644 --- a/maigret/report.py +++ b/maigret/report.py @@ -245,7 +245,7 @@ def save_graph_report(filename: str, username_results: list, db: MaigretDatabase # Generate interactive visualization from pyvis.network import Network # type: ignore[import-untyped] - nt = Network(notebook=True, height="750px", width="100%") + nt = Network(notebook=True, height="100vh", width="100%") nt.from_nx(G) nt.show(filename)