mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 01:25:27 +00:00
fix default selection value
This commit is contained in:
parent
7c137b150e
commit
fcceb5af1c
1 changed files with 1 additions and 1 deletions
|
|
@ -127,7 +127,7 @@ impl List {
|
||||||
.find_with_equal_func(|item| {
|
.find_with_equal_func(|item| {
|
||||||
item.dynamic_cast_ref::<Item>().unwrap().is_active()
|
item.dynamic_cast_ref::<Item>().unwrap().is_active()
|
||||||
})
|
})
|
||||||
.unwrap(),
|
.unwrap_or_default(),
|
||||||
)
|
)
|
||||||
.factory(&factory)
|
.factory(&factory)
|
||||||
.build();
|
.build();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue