Skip to content

Commit e53e13a

Browse files
committed
fix: arrow not showing on score and tok when sorting on tui because of width constraints.
1 parent f31c1f7 commit e53e13a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

llmfit-tui/src/tui_ui.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -719,8 +719,8 @@ fn draw_table(frame: &mut Frame, app: &mut App, area: Rect, tc: &ThemeColors) {
719719
Constraint::Min(20), // model name
720720
Constraint::Length(12), // provider
721721
Constraint::Length(8), // params
722-
Constraint::Length(6), // score
723-
Constraint::Length(6), // tok/s
722+
Constraint::Length(8), // score
723+
Constraint::Length(8), // tok/s
724724
Constraint::Length(10), // quant (AWQ-4bit, GPTQ-Int4, GPTQ-Int8)
725725
Constraint::Length(6), // disk
726726
Constraint::Length(7), // mode

0 commit comments

Comments
 (0)