fix(properties): reflect added properties in real time in the ui
This commit is contained in:
parent
ac8eb8118d
commit
1318319ad1
1 changed files with 4 additions and 1 deletions
|
@ -685,7 +685,9 @@ pub fn ItemsList(
|
||||||
});
|
});
|
||||||
}>{ "Delete" }</button>
|
}>{ "Delete" }</button>
|
||||||
</td>
|
</td>
|
||||||
{items.get().iter().enumerate().map(move |(index, item)| {
|
{move || {
|
||||||
|
let property_clone_for_cells = property_clone.clone();
|
||||||
|
items.get().iter().enumerate().map(move |(index, item)| {
|
||||||
let property_clone_for_closure = property_clone_for_cells.clone();
|
let property_clone_for_closure = property_clone_for_cells.clone();
|
||||||
view! {
|
view! {
|
||||||
<td>
|
<td>
|
||||||
|
@ -706,6 +708,7 @@ pub fn ItemsList(
|
||||||
</td>
|
</td>
|
||||||
}
|
}
|
||||||
}).collect::<Vec<_>>()}
|
}).collect::<Vec<_>>()}
|
||||||
|
}
|
||||||
</tr>
|
</tr>
|
||||||
}
|
}
|
||||||
}).collect::<Vec<_>>()
|
}).collect::<Vec<_>>()
|
||||||
|
|
Loading…
Add table
Reference in a new issue