fix: message when no items on clipboard
This commit is contained in:
parent
4ba0f8d958
commit
53ff6cc21a
1 changed files with 1 additions and 1 deletions
|
|
@ -136,7 +136,7 @@ Item {
|
|||
const items = ClipboardService.items || []
|
||||
|
||||
// If no items and we haven't tried loading yet, trigger a load
|
||||
if (items.length === 0 && !ClipboardService.loading) {
|
||||
if (items.count === 0 && !ClipboardService.loading) {
|
||||
isWaitingForData = true
|
||||
ClipboardService.list(100)
|
||||
return [{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue