tangled
alpha
login
or
join now
moth11.net
/
xcvr
2
fork
atom
frontend for xcvr appview
2
fork
atom
overview
issues
pulls
pipelines
could it be ordering idk
moth11.net
6 months ago
2f48d247
ad7791d0
+1
-1
1 changed file
expand all
collapse all
unified
split
src
lib
components
Transmitter.svelte
+1
-1
src/lib/components/Transmitter.svelte
···
76
76
const convertFileToImageItem = (blob: File) => {
77
77
const blobUrl = URL.createObjectURL(blob);
78
78
const img = document.createElement("img");
79
79
+
img.src = blobUrl;
79
80
img.onload = () => {
80
81
URL.revokeObjectURL(blobUrl);
81
82
};
82
82
-
img.src = blobUrl;
83
83
const image: Image = {
84
84
type: "image",
85
85
id: 0,