Update loading message if you're just loading your stash

This commit is contained in:
Christian Rocha 2020-09-07 19:32:19 -04:00 committed by Christian Muehlhaeuser
parent dc74e17cb8
commit f2537b1811

View file

@ -688,7 +688,11 @@ func stashHeaderView(m stashModel) string {
// Still loading. We haven't found files, stashed items, or news yet.
if loading && noMarkdowns {
return common.Subtle("Looking for stuff...")
if stashedOnly {
return common.Subtle("Loading your stash...")
} else {
return common.Subtle("Looking for stuff...")
}
}
localItems := m.countMarkdowns(localMarkdown)