Skip to content

Commit

Permalink
🔧 Use the default array for parent and ancestor block settings (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
huubl authored Nov 8, 2024
1 parent 5b25b6b commit ff65e77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Block.php
Original file line number Diff line number Diff line change
Expand Up @@ -527,8 +527,8 @@ public function settings(): Collection
'category' => $this->category,
'icon' => $this->getIcon(),
'keywords' => $this->keywords,
'parent' => $this->parent ?: null,
'ancestor' => $this->ancestor ?: null,
'parent' => $this->parent,
'ancestor' => $this->ancestor,
'post_types' => $this->post_types,
'mode' => $this->mode,
'align' => $this->align,
Expand Down

0 comments on commit ff65e77

Please sign in to comment.