Fix post-merge issue from the old branch PR (#8590)

Kirill Bulatov created

Follow-up of https://github.com/zed-industries/zed/pull/6924/files that
had old code in CI that worked, but fresh `main` had different code that
needed small changes.


Release Notes:

- N/A

Change summary

crates/editor/src/editor.rs | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)

Detailed changes

crates/editor/src/editor.rs 🔗

@@ -7709,7 +7709,11 @@ impl Editor {
                         cx.window_context().defer(move |cx| {
                             let target_editor: View<Self> =
                                 workspace.update(cx, |workspace, cx| {
-                                    workspace.open_project_item(target.buffer.clone(), cx)
+                                    workspace.open_project_item(
+                                        workspace.active_pane().clone(),
+                                        target.buffer.clone(),
+                                        cx,
+                                    )
                                 });
                             target_editor.update(cx, |target_editor, cx| {
                                 target_editor.change_selections(Some(Autoscroll::fit()), cx, |s| {