commit 35effd89312ab0a7013f798b7f5b0a1d3ea82932
parent 14b34b172794748c6d3fa9f23f7ba33fc19bb37c
Author: Matthew Gantenbein <ganten1998@gmail.com>
Date: Sun, 31 May 2026 18:18:15 -0500
fix: correct capitalization in input panel title
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/valentine/src/panels/inputs.rs b/valentine/src/panels/inputs.rs
@@ -116,7 +116,7 @@ pub fn render(
) {
let border = if focused { theme.border_focus } else { theme.border };
let block = Block::default()
- .title(Span::styled(" Inputs ", Style::default().fg(theme.accent)))
+ .title(Span::styled(" inputs ", Style::default().fg(theme.accent)))
.borders(Borders::ALL)
.border_type(ratatui::widgets::BorderType::Rounded)
.border_style(Style::default().fg(border));