update to runes
This commit is contained in:
parent
8ca76d21d0
commit
0269ea15de
1
frontend/package.json.md5
Executable file
1
frontend/package.json.md5
Executable file
@ -0,0 +1 @@
|
||||
ecca169d2f4300be13c05467ed335c56
|
@ -18,8 +18,8 @@
|
||||
TableBodyCell,
|
||||
} from "flowbite-svelte";
|
||||
|
||||
let name: string;
|
||||
let thingsList: things.Thing[] = [];
|
||||
let name: string = $state();
|
||||
let thingsList: things.Thing[] = $state([]);
|
||||
|
||||
function update() {
|
||||
GetThings().then((ts) => {
|
||||
@ -40,7 +40,7 @@
|
||||
onMount(update);
|
||||
</script>
|
||||
|
||||
<form class="max-w-96 m-5 grid-cols-1 gap-10" on:submit={submit}>
|
||||
<form class="max-w-96 m-5 grid-cols-1 gap-10" onsubmit={submit}>
|
||||
<div class="m-5">
|
||||
<Label for="first_name" class="mb-2">First name</Label>
|
||||
<Input type="text" placeholder="John" bind:value={name} required />
|
||||
|
Loading…
Reference in New Issue
Block a user