Skip to content

Commit 0bdcc62

Browse files
authored
fix(list): No items found. -> No items. (#393)
1 parent fa8207d commit 0bdcc62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

list/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1174,7 +1174,7 @@ func (m Model) populatedView() string {
11741174
if m.filterState == Filtering {
11751175
return ""
11761176
}
1177-
return m.Styles.NoItems.Render("No " + m.itemNamePlural + " found.")
1177+
return m.Styles.NoItems.Render("No " + m.itemNamePlural + ".")
11781178
}
11791179

11801180
if len(items) > 0 {

0 commit comments

Comments
 (0)