Skip to content

Commit

Permalink
fix(list): rendering empty list
Browse files Browse the repository at this point in the history
Fixes: 4e18245 ("Add list bubble")
  • Loading branch information
aymanbagabas committed Mar 2, 2022
1 parent e349920 commit 8856251
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion list/list.go
Expand Up @@ -1082,7 +1082,7 @@ func (m Model) populatedView() string {
if m.filterState == Filtering {
return ""
}
m.Styles.NoItems.Render("No items found.")
return m.Styles.NoItems.Render("No items found.")
}

if len(items) > 0 {
Expand Down

0 comments on commit 8856251

Please sign in to comment.