Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions panel/models/card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,8 @@ export class CardView extends ColumnView {
header.r_after_render()
}

if (this.model.collapsed) {
return
}

for (const child_view of this.child_views.slice(1)) {
child_view.model.visible = child_view.model.visible && !this.model.collapsed
Comment thread
philippjfr marked this conversation as resolved.
Outdated
this.shadow_el.appendChild(child_view.el)
child_view.render()
child_view.r_after_render()
Expand Down
Loading