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

feat: fallback avatar to initials on image load error #326

Closed
wants to merge 1 commit into from

Conversation

tqwewe
Copy link
Contributor

@tqwewe tqwewe commented Nov 26, 2024

Fallsback the avatar image to initials when the image fails to load

@@ -85,10 +86,10 @@ pub fn Avatar(
}
}}
{move || {
let src = src.with_value(|s| s.get());
let src = src.with_value(|s| if image_failed.get() { None } else { s.get() });
Copy link
Collaborator

Choose a reason for hiding this comment

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

After the first image loading fails, modify the src, and the image will never be displayed.

tips: MaybeProp has implemented Copy, and the src prop can remove the StoredValue wrapper.

@luoxiaozero
Copy link
Collaborator

Fixed in #353.

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

Successfully merging this pull request may close these issues.

2 participants