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.
12 lines
629 B
Markdown
12 lines
629 B
Markdown
---
|
|
# claudbg-j9az
|
|
title: 'TUI: model column always blank in sessions list'
|
|
status: in-progress
|
|
type: bug
|
|
priority: normal
|
|
created_at: 2026-04-01T06:10:52Z
|
|
updated_at: 2026-04-01T06:12:23Z
|
|
---
|
|
|
|
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.
|