editor: Fix menu::Confirm falling through to editor when confirming task entry in code actions (#11546)

Piotr Osiewicz created

Release Notes:

- N/A

Change summary

crates/editor/src/editor.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/editor/src/editor.rs 🔗

@@ -3997,7 +3997,7 @@ impl Editor {
                         cx,
                     );
 
-                    None
+                    Some(Task::ready(Ok(())))
                 })
             }
             CodeActionsItem::CodeAction(action) => {