From 123e3b9846f8d843b40746e838784bb97b41a58f Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Mon, 8 Sep 2025 18:45:55 -0300 Subject: [PATCH] fix: Remove non-existent max_height method call Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) --- src/modes/list.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/modes/list.rs b/src/modes/list.rs index f24eed1..aeba259 100644 --- a/src/modes/list.rs +++ b/src/modes/list.rs @@ -157,13 +157,11 @@ pub fn mode_list( _ => {} } - // Apply alignment and max height + // Apply alignment cell = match column.align { crate::config::ColumnAlignment::Right => cell.set_alignment(CellAlignment::Right), crate::config::ColumnAlignment::Left => cell.set_alignment(CellAlignment::Left), }; - // Set max height of 3 for the cell - let cell = cell.max_height(3); table_row.add_cell(cell); } table.add_row(table_row);