From e9c9a8a269379f77bfadfe9a0aa00797d53e2ced Mon Sep 17 00:00:00 2001 From: Michael Angerman <1809991+stormasm@users.noreply.github.com> Date: Tue, 20 May 2025 00:36:41 -0700 Subject: [PATCH] gpui: Correct the image id in the example image_loading (#30990) The image id "image-1" already exists so the id should be "image-4" Release Notes: - N/A --- crates/gpui/examples/image_loading.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/gpui/examples/image_loading.rs b/crates/gpui/examples/image_loading.rs index 8c86eaa0e4..9daec4de03 100644 --- a/crates/gpui/examples/image_loading.rs +++ b/crates/gpui/examples/image_loading.rs @@ -177,7 +177,7 @@ impl Render for ImageLoadingExample { ) .to_path_buf(); img(image_source.clone()) - .id("image-1") + .id("image-4") .border_1() .size_12() .with_fallback(|| Self::fallback_element().into_any_element())