webview: fix typo

This commit is contained in:
Johannes Kirschbauer
2024-05-26 13:38:30 +02:00
parent 3998efac78
commit be5c3accfe

View File

@@ -27,7 +27,7 @@ export const Nested: Component = () => {
<For each={list()}> <For each={list()}>
{(entry, i) => ( {(entry, i) => (
<li> <li>
{i() + 1}: {entry.machineName}{" "} {i() + 1}: {entry.machine_name}{" "}
{entry.machine_description || "No description"} {entry.machine_description || "No description"}
</li> </li>
)} )}