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...

757 B

title status type priority created_at updated_at
TUI: model column always blank in sessions list completed bug normal 2026-04-01T06:10:52Z 2026-04-01T06:13:14Z

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.

Summary of Changes

Added model to the DB enrichment query in src/tui/run.rs and populated item.model in the enrichment loop.