Fix indentation for confirmation prompt in series truncation logic

This commit is contained in:
Ross
2026-02-02 13:24:37 +00:00
parent 5bb2aea8ef
commit f4186bf923
+1 -1
View File
@@ -251,7 +251,7 @@
return;
}
if(confirm(`Trucated series. This will leave ${upper_bound - lower_bound + 1} images.`) == true) {
if(confirm(`Trucated series. This will leave ${upper_bound - lower_bound + 1} images.`) == true) {
const truncateTemplate = `{% url 'atlas:series_truncate' series.id 0 0 %}`; // e.g. /atlas/series/920/truncate/0/0/
const truncateUrl = truncateTemplate.replace('/0/0/', `/${lower_bound}/${upper_bound}/`);
htmx.ajax("GET", truncateUrl, "#truncate-output")