fix(list): rendering empty list

Fixes: 4e18245481 ("Add list bubble")
This commit is contained in:
Ayman Bagabas 2022-03-02 15:54:12 -05:00
parent e349920524
commit 88562515cf

View File

@ -1082,7 +1082,7 @@ func (m Model) populatedView() string {
if m.filterState == Filtering { if m.filterState == Filtering {
return "" return ""
} }
m.Styles.NoItems.Render("No items found.") return m.Styles.NoItems.Render("No items found.")
} }
if len(items) > 0 { if len(items) > 0 {