fix: resolve issues #194, #195, #196, #197#199
Merged
Conversation
- #194: Send full date format object instead of just format string to prevent JSON parse errors - #195: Remove non-functional forgot password link, fix README port 3005 -> 3000 - #196: Use ADMIN_PASSWORD env var in migration, update existing user in create-admin script instead of failing - #197: Convert camelCase filter keys to snake_case in photo export to match backend PhotoFilterBuilder
This was referenced Feb 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Backport of #198 (beta) — fixes for four reported GitHub issues:
"DD/MM/YYYY") instead of the full{ format, locale }object when saving date format settings. The backend then failed to JSON.parse the bare string.href="#"). Fixed README port from 3005 to 3000.ADMIN_PASSWORDfrom env instead of always generating a random password. Alsocreate-admin.jsnow updates the existing user's password instead of failing silently when the user already exists.minRating,hasLikes, etc.) but the backendPhotoFilterBuilderexpects snake_case (min_rating,has_likes). Filters were silently ignored, exporting all photos instead of filtered ones.Closes #194, closes #197
Changed files
frontend/src/features/settings/hooks/useSettingsState.tsfrontend/src/pages/admin/AdminLoginPage.tsxfrontend/src/components/admin/PhotoExportMenu.tsxbackend/migrations/core/001_init.jsbackend/scripts/create-admin.jsREADME.mdTest plan