diff --git a/showbits-thermal-printer-ui/public/photo.html b/showbits-thermal-printer-ui/public/photo.html
index 160a750..17af1b7 100644
--- a/showbits-thermal-printer-ui/public/photo.html
+++ b/showbits-thermal-printer-ui/public/photo.html
@@ -139,7 +139,7 @@
form.append("image", blob);
form.append("caption", new Date().toLocaleString());
- fetch("image", { method: "POST", body: form }).catch((error) => {
+ fetch("/api/image", { method: "POST", body: form }).catch((error) => {
console.error("Error uploading image:", error);
});
});
diff --git a/showbits-thermal-printer-ui/src/components/CSelector.vue b/showbits-thermal-printer-ui/src/components/CSelector.vue
index 9d2faa2..52ec65c 100644
--- a/showbits-thermal-printer-ui/src/components/CSelector.vue
+++ b/showbits-thermal-printer-ui/src/components/CSelector.vue
@@ -34,6 +34,7 @@ const mode = ref<
+ Take a photo
@@ -75,6 +76,7 @@ p {
.list {
display: flex;
flex-wrap: wrap;
+ align-items: baseline;
gap: 1ch;
}