mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Wording on bottom button
This commit is contained in:
parent
3d87ef671b
commit
701d6a6be1
1 changed files with 3 additions and 3 deletions
|
|
@ -1047,10 +1047,10 @@ struct BottomView: View {
|
|||
await viewModel.loadMore(dataService: dataService)
|
||||
}
|
||||
}, label: {
|
||||
if let totalCount = viewModel.fetcher.totalCount {
|
||||
Text("Fetch more.")
|
||||
if let totalCount = viewModel.fetcher.totalCount, viewModel.fetcher.items.count >= totalCount {
|
||||
Text("Check for more")
|
||||
} else {
|
||||
Text("Refresh")
|
||||
Text("Fetch more")
|
||||
}
|
||||
})
|
||||
.foregroundColor(Color.blue)
|
||||
|
|
|
|||
Loading…
Reference in a new issue