From 18c6c7ebb7af44c4d42db928c2a4b44d9e0bd185 Mon Sep 17 00:00:00 2001 From: Petros Amoiridis Date: Thu, 30 Mar 2023 14:03:59 +0300 Subject: [PATCH] Fix error --- crates/recent_projects/src/highlighted_workspace_location.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/recent_projects/src/highlighted_workspace_location.rs b/crates/recent_projects/src/highlighted_workspace_location.rs index 5c3505cccd..a71a7dd2d7 100644 --- a/crates/recent_projects/src/highlighted_workspace_location.rs +++ b/crates/recent_projects/src/highlighted_workspace_location.rs @@ -63,7 +63,7 @@ impl HighlightedWorkspaceLocation { .map(|path| { let path = util::paths::compact(&path); let highlighted_text = Self::highlights_for_path( - full_path.as_ref(), + path.as_ref(), &string_match.positions, path_start_offset, );