We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dfc83f commit 938f1bcCopy full SHA for 938f1bc
1 file changed
src/Element.php
@@ -27,9 +27,7 @@ public function __construct($value = null) {
27
$this->required_props = array_unique(
28
array_merge($parent_instance->required_props, $this->required_props)
29
);
30
- $this->default_props = array_unique(
31
- array_merge($parent_instance->default_props, $this->default_props)
32
- );
+ $this->default_props = array_merge($parent_instance->default_props, $this->default_props);
33
}
34
$this->known_props = array_keys($this->props);
35
0 commit comments