mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-29 04:20:46 +00:00
Fix file paths in stories (#4104)
This PR fixes some file paths used in our stories that were still referencing the `ui2` crate. Release Notes: - N/A
This commit is contained in:
parent
b2afa73321
commit
8f3d79c3b8
2 changed files with 2 additions and 2 deletions
|
@ -113,7 +113,7 @@ impl Render for IconButtonStory {
|
|||
|
||||
StoryContainer::new(
|
||||
"Icon Button",
|
||||
"crates/ui2/src/components/stories/icon_button.rs",
|
||||
"crates/ui/src/components/stories/icon_button.rs",
|
||||
)
|
||||
.child(StorySection::new().children(buttons))
|
||||
.child(
|
||||
|
|
|
@ -9,7 +9,7 @@ impl Render for ToggleButtonStory {
|
|||
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
|
||||
StoryContainer::new(
|
||||
"Toggle Button",
|
||||
"crates/ui2/src/components/stories/toggle_button.rs",
|
||||
"crates/ui/src/components/stories/toggle_button.rs",
|
||||
)
|
||||
.child(
|
||||
StorySection::new().child(
|
||||
|
|
Loading…
Reference in a new issue