fix(tui): add address column #53

Merged
pitbuster merged 1 commit from tui-address into main 2025-06-14 19:53:20 -04:00

View file

@ -92,6 +92,7 @@ fn list_draw(state: &mut State, f: &mut Frame<'_>, area: Rect) {
p.latitude.to_string(),
p.longitude.to_string(),
p.icon.clone(),
p.address.clone(),
p.open_hours.clone(),
p.description.clone(),
p.url.clone().unwrap_or_default(),
@ -117,6 +118,7 @@ fn list_draw(state: &mut State, f: &mut Frame<'_>, area: Rect) {
"Lat",
"Long",
"Icon",
"Address",
"Open Hours",
"Description",
"URL",