tangled
alpha
login
or
join now
moth11.net
/
xcvr
2
fork
atom
frontend for xcvr appview
2
fork
atom
overview
issues
pulls
pipelines
my guess is she was the problem
moth11.net
5 months ago
5a07bd60
62af63da
+1
-3
1 changed file
expand all
collapse all
unified
split
src
lib
components
Transmitter.svelte
+1
-3
src/lib/components/Transmitter.svelte
···
20
20
let imageHeight: number | undefined;
21
21
$effect(() => {
22
22
imageWidth = image?.naturalWidth;
23
23
-
imageWidth = image?.naturalHeight;
23
23
+
imageHeight = image?.naturalHeight;
24
24
});
25
25
$effect(() => {
26
26
if (ctx) {
···
163
163
<button onclick={cancelimagepost}> cancel </button>
164
164
{#if ctx.atpblob !== undefined}
165
165
<button onclick={uploadimage}> confirm </button>
166
166
-
{imageWidth}
167
167
-
{imageHeight}
168
166
{:else}
169
167
uploading...
170
168
{/if}