Skip to content

Commit

Permalink
fix: views not reused correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
Akryum committed Dec 14, 2022
1 parent dd820f8 commit d5a8d75
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -532,13 +532,13 @@ export default {
continue
}
type = item[typeField]
let unusedPool = unusedViews.get(type)
let newlyUsedView = false
// No view assigned to item
if (!view) {
type = item[typeField]
if (continuous) {
// Reuse existing view
if (unusedPool && unusedPool.length) {
Expand Down

0 comments on commit d5a8d75

Please sign in to comment.