|
When toggling the Folder View or Tags features under Account Settings -> Features, the toggle position does not persist. Enabling either setting shows no corresponding activity or requests in the browser's Network or Console tabs. To Reproduce
Observed Behavior
Environment
Browsers Tested
|
Replies: 1 comment 1 reply
|
This is expected UI behavior unless the form's Save button is clicked. The switches only update local Svelte state, so toggling them sends no request; Toggle Folder View/Tags, scroll to the bottom, and click Save. You should then see a If Save itself produces no request, then that is a bug; capture the button state and request log rather than the toggle event. |
This is expected UI behavior unless the form's Save button is clicked. The switches only update local Svelte state, so toggling them sends no request;
updateMyPreferences()is called only by the Save button at the bottom of Account Settings → Features.Toggle Folder View/Tags, scroll to the bottom, and click Save. You should then see a
PUT /users/me/preferencesrequest and the “Saved settings” toast. The relevant handler is here: https://github.com/immich-app/immich/blob/main/web/src/routes/%28user%29/user-settings/FeatureSettings.svelteIf Save itself produces no request, then that is a bug; capture the button state and request log rather than the toggle event.