Skip to content

Commit 4a438a8

Browse files
committed
Let Remote Config entries table expand to terminal width
1 parent 41f9795 commit 4a438a8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/firefetch/output.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,9 +202,9 @@ def _detail_for(r: ProbeResult):
202202
entries = (data or {}).get("entries") or {}
203203
if not entries:
204204
return None
205-
t = Table(show_header=True, header_style="bold")
205+
t = Table(show_header=True, header_style="bold", expand=True)
206206
t.add_column("key", style="cyan", no_wrap=True)
207-
t.add_column("value", overflow="fold", max_width=80)
207+
t.add_column("value", overflow="fold")
208208
for k, v in entries.items():
209209
t.add_row(k, str(v))
210210
return t

0 commit comments

Comments
 (0)