Skip to content

Commit

Permalink
fix(list): No items found. -> No items. (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
maaslalani committed Jul 11, 2023
1 parent fa8207d commit 0bdcc62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion list/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -1174,7 +1174,7 @@ func (m Model) populatedView() string {
if m.filterState == Filtering {
return ""
}
return m.Styles.NoItems.Render("No " + m.itemNamePlural + " found.")
return m.Styles.NoItems.Render("No " + m.itemNamePlural + ".")
}

if len(items) > 0 {
Expand Down

0 comments on commit 0bdcc62

Please sign in to comment.