mirror of
https://github.com/charmbracelet/glow
synced 2024-11-10 06:04:18 +00:00
Update loading message if you're just loading your stash
This commit is contained in:
parent
dc74e17cb8
commit
f2537b1811
1 changed files with 5 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue