We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41f9795 commit 4a438a8Copy full SHA for 4a438a8
1 file changed
src/firefetch/output.py
@@ -202,9 +202,9 @@ def _detail_for(r: ProbeResult):
202
entries = (data or {}).get("entries") or {}
203
if not entries:
204
return None
205
- t = Table(show_header=True, header_style="bold")
+ t = Table(show_header=True, header_style="bold", expand=True)
206
t.add_column("key", style="cyan", no_wrap=True)
207
- t.add_column("value", overflow="fold", max_width=80)
+ t.add_column("value", overflow="fold")
208
for k, v in entries.items():
209
t.add_row(k, str(v))
210
return t
0 commit comments