You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
claudbg/.beans/claudbg-j9az--tui-model-col...

11 lines
605 B
Markdown

---
# claudbg-j9az
title: 'TUI: model column always blank in sessions list'
status: todo
type: bug
created_at: 2026-04-01T06:10:52Z
updated_at: 2026-04-01T06:10:52Z
---
The Model column in the TUI session-list screen is always empty. Root cause: when building SessionListItem in src/tui/run.rs the model field is set to String::new(), and the DB enrichment query (SELECT session_id, project_path, message_count FROM sessions) does not fetch the model column. The model field does exist in the sessions DB table. Fix: add model to the enrichment SELECT and populate item.model during the enrichment loop.