working version

This commit is contained in:
Dmitry Borisenko
2021-09-12 19:32:16 +00:00
parent ca03a0c6f1
commit 8a41295d6f
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@
//router.mode.memory(); // enables in-memory navigation method
import Card from "./Card.svelte";
import Input from "./Input.svelte";
import wInput from "./wInput.svelte";
import Myinput from "./Myinput.svelte";
onMount(async () => {
WSpush("mounted");
@@ -113,7 +113,7 @@
<Card title="Dashboard">
{#each wigets as widget, i}
{#if widget.widget === "input"}
<Input title={widget.descr} bind:value={widget.status} />
<Myinput title={widget.descr} bind:value={widget.status} />
{/if}
{/each}
</Card>