From 945ebdec570679e5691e472cbc09b82647953e25 Mon Sep 17 00:00:00 2001 From: Jerod Hodgkin Date: Mon, 20 Jul 2026 06:38:34 +0000 Subject: [PATCH] Fix config panel field name: photographer.profileImage, not .image Caught by testing against the real dev config after the initial commit - the quick-edit form was writing to a nonexistent key instead of the one the rest of the app actually reads. --- src/dashboard.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dashboard.html b/src/dashboard.html index 57f8101..355b2cd 100644 --- a/src/dashboard.html +++ b/src/dashboard.html @@ -593,7 +593,7 @@ const CFG_QUICK_FIELDS = [ ['cfg-site-tagline', 'site.tagline'], ['cfg-site-heroImage', 'site.heroImage'], ['cfg-photographer-name', 'photographer.name'], - ['cfg-photographer-image', 'photographer.image'], + ['cfg-photographer-image', 'photographer.profileImage'], ['cfg-photographer-bio', 'photographer.bio'], ['cfg-contact-email', 'contact.email'], ['cfg-contact-phone', 'contact.phone'],