From 5cab5de4dcd14cb372b72ff872dae49177bac6d8 Mon Sep 17 00:00:00 2001 From: Rachel Simone Weil Date: Sun, 15 Dec 2024 12:26:53 -0600 Subject: [PATCH] Applies description style to note description --- field_note.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/field_note.go b/field_note.go index c93125f0..c7ab68e3 100644 --- a/field_note.go +++ b/field_note.go @@ -224,7 +224,7 @@ func (n *Note) View() string { } if n.description.val != "" || n.description.fn != nil { sb.WriteString("\n") - sb.WriteString(render(n.description.val)) + sb.WriteString(styles.Description.Render(n.description.val)) } if n.showNextButton { sb.WriteString(styles.Next.Render(n.nextLabel))