Skip to content

Commit

Permalink
fix: attempt to fix content update handling
Browse files Browse the repository at this point in the history
  • Loading branch information
d1snin committed Nov 10, 2023
1 parent 8bc43ee commit 9be3ace
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ class BlockContainerComponent : Component<Unit>(), KoinComponent {
div(className = "container-fluid px-0 d-flex justify-content-center") {
vPanel(className = "w-100") {
val batches = change.blocks.splitIntoBatches()
processBatches(batches, change)

if (batches.isNotEmpty()) {
processBatches(batches, change)
}
}
}
}
Expand Down

0 comments on commit 9be3ace

Please sign in to comment.