Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
vursen committed Dec 29, 2023
1 parent dc81320 commit 223e39f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,6 @@ export class DataProviderController extends EventTarget {

/** @private */
__isPlaceholder(item) {
return item === this.placeholder;
return this.placeholder ? item === this.placeholder : !item;
}
}

0 comments on commit 223e39f

Please sign in to comment.