Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove archived images from people page #13735

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

Pranay-Pandey
Copy link
Contributor

fixes: #12463

Overview

This PR addresses a bug where archived images were still appearing in the person page, leading to confusion for users.

Changes Made:

Add isArchived: false parameter in updateOptions to populate images in person page

Copy link
Contributor

Label error. Requires exactly 1 of: changelog:.*. Found:

@@ -81,7 +81,7 @@
$: thumbnailData = getPeopleThumbnailUrl(person);
$: if (person) {
handlePromiseError(updateAssetCount());
handlePromiseError(assetStore.updateOptions({ personId: person.id }));
handlePromiseError(assetStore.updateOptions({ personId: person.id, isArchived: false }));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's extract the common options up to a new variable so they will always be in sync.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

The archived image still appears in the person view,
2 participants