Format Thrimbletrimmer files

I forgot to run prettier before my last PR.
pull/468/head
ElementalAlchemist 7 days ago committed by Christopher Usher
parent 501549350b
commit 0d35e95dc7

@ -282,7 +282,7 @@ function generateTemplateDOM(index, template) {
editReadCell.classList.add("template-data-view");
const switchToEditButton = document.createElement("button");
switchToEditButton.type = "button";
switchToEditButton.innerText = "Edit"
switchToEditButton.innerText = "Edit";
editReadCell.appendChild(switchToEditButton);
const editEditCell = document.createElement("div");
editEditCell.classList.add("template-data-edit", "hidden");
@ -356,7 +356,7 @@ function generateTemplateDOM(index, template) {
description: description,
attribution: attribution,
crop: [cropXStart, cropYStart, cropXEnd, cropYEnd],
location: [locXStart, locYStart, locXEnd, locYEnd]
location: [locXStart, locYStart, locXEnd, locYEnd],
};
const imageFiles = imageEditField.files;
@ -387,7 +387,11 @@ function generateTemplateDOM(index, template) {
const origName = templateData[index].name;
const encodedName = encodeURIComponent(origName);
const submitResponse = await fetch(`/thrimshim/update-template/${encodedName}`, { method: "POST", body: JSON.stringify(submitData), headers: { "Content-Type": "application/json" }});
const submitResponse = await fetch(`/thrimshim/update-template/${encodedName}`, {
method: "POST",
body: JSON.stringify(submitData),
headers: { "Content-Type": "application/json" },
});
if (!submitResponse.ok) {
const submitError = document.createElement("li");
submitError.innerText = await submitResponse.text();

@ -19,7 +19,8 @@ table > form {
width: 480px;
}
#template-new-errors, .template-data-edit-errors {
#template-new-errors,
.template-data-edit-errors {
color: #c00;
}

Loading…
Cancel
Save