diff --git a/internal/web/ui/templates/face_gallery.html b/internal/web/ui/templates/face_gallery.html
index 33d14c4..41189fa 100644
--- a/internal/web/ui/templates/face_gallery.html
+++ b/internal/web/ui/templates/face_gallery.html
@@ -79,20 +79,20 @@
-
@@ -115,7 +115,7 @@ function editPerson(id, name, photos) {
document.getElementById('edit-name').value = name;
document.getElementById('add-photo-id').value = id;
var ph = document.getElementById('edit-photos');
- ph.innerHTML = photos.map(function(p,i) { return '

' + '
'; }).join('');
+ ph.innerHTML = photos.map(function(p,i) { return '

'; }).join('');
document.getElementById('edit-modal').style.display = 'flex';
}
function closeEdit() { document.getElementById('edit-modal').style.display = 'none'; }