summary refs log tree commit diff
path: root/www/photo.causal.agency
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--www/photo.causal.agency/trips.html14
1 files changed, 10 insertions, 4 deletions
diff --git a/www/photo.causal.agency/trips.html b/www/photo.causal.agency/trips.html
index d6c41c3a..6c65b7c0 100644
--- a/www/photo.causal.agency/trips.html
+++ b/www/photo.causal.agency/trips.html
@@ -219,10 +219,16 @@ function setTripBody() {
 		select.appendChild(option);
 	}
 	let roll = rolls[body.name];
-	document.getElementById("trip-film").value = roll.film;
-	let next = (roll.used > 0 ? roll.used + 1 : roll.used);
-	document.getElementById("trip-first").value = next;
-	document.getElementById("trip-last").value = next;
+	if (roll) {
+		document.getElementById("trip-film").value = roll.film;
+		let next = (roll.used > 0 ? roll.used + 1 : roll.used);
+		document.getElementById("trip-first").value = next;
+		document.getElementById("trip-last").value = next;
+	} else {
+		document.getElementById("trip-film").value = "";
+		document.getElementById("trip-first").value = "";
+		document.getElementById("trip-last").value = "";
+	}
 }
 setTripBody();