Skip to content

Commit 6a58b29

Browse files
committed
feat(tui): improve notification styling and consistency
- Update response viewer placeholder text to "Yet to be implemented..." - Add bold warning color styling to footer notifications - Use consistent "Yet to be implemented" messaging throughout TUI
1 parent 87eb76e commit 6a58b29

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

internal/tui/views/selected_collection.go

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,10 @@ func (v SelectedCollectionView) View() string {
219219

220220
instructions := "↑↓: navigate endpoints • 1: request • 2: response • enter: edit • esc: stop editing • r: send • esc/q: back"
221221
if v.notification != "" {
222-
instructions = v.notification
222+
instructions = lipgloss.NewStyle().
223+
Foreground(styles.Warning).
224+
Bold(true).
225+
Render(v.notification)
223226
}
224227

225228
return v.layout.FullView(
@@ -261,7 +264,7 @@ func (v SelectedCollectionView) renderMainTabContent() string {
261264
Width(v.width/2).
262265
Height(v.height/2).
263266
Align(lipgloss.Center, lipgloss.Center).
264-
Render("Response viewer coming soon...")
267+
Render("Yet to be implemented...")
265268
default:
266269
return ""
267270
}

0 commit comments

Comments
 (0)