editor: Remove extra quotes from outline search term (#29829)
The outline panel includes quotes around search terms. The rendering makes it somewhat ambiguous whether these quotes are part of the search term and are unnecessary, especially given other rendering differentiation. This PR removes them. Release Notes: - N/A
This commit is contained in:
parent
6bacea28bc
commit
da3a696a60
1 changed files with 1 additions and 1 deletions
|
@ -4962,7 +4962,7 @@ impl Render for OutlinePanel {
|
|||
.border_color(cx.theme().colors().border)
|
||||
.gap_0p5()
|
||||
.child(Label::new("Searching:").color(Color::Muted))
|
||||
.child(Label::new(format!("'{}'", search_state.query))),
|
||||
.child(Label::new(search_state.query.to_string())),
|
||||
)
|
||||
})
|
||||
.child(self.render_main_contents(query, show_indent_guides, indent_size, window, cx))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue