Compare commits

..

No commits in common. "22867f269e0dd3519e364f5ace984070d8d02a95" and "d2531c0dd95ac650dfece7e04e38acd0150f7089" have entirely different histories.

3 changed files with 5 additions and 5 deletions

View file

@ -8,7 +8,7 @@
let streamId = $state("doggoat");
</script>
<Dialog close={() => close?.()}>
<Dialog close={() => close()}>
<div class="add-stream-dialog">
{#if step === 0}
<div class="step-0">
@ -46,7 +46,7 @@
>
<button
onclick={() => {
add?.({ type, streamId });
add({ type, streamId });
step = 0;
}}>Add</button
>

View file

@ -4,7 +4,7 @@
let { streams = $bindable(null), close } = $props();
</script>
<Dialog close={() => close?.()}>
<Dialog close={() => close()}>
<pre>
{JSON.stringify(streams)}
</pre>

View file

@ -1,6 +1,6 @@
<script>
let {stream, type} = $props();
export let stream;
export let type;
let src;
let data;