Skip to content

Commit

Permalink
Applies description style to note description
Browse files Browse the repository at this point in the history
  • Loading branch information
hxlnt authored Dec 15, 2024
1 parent ceae3bb commit 5cab5de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion field_note.go
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 5cab5de

Please sign in to comment.