Fix missing arrows

Nate Butler created

Change summary

crates/command_palette2/src/command_palette.rs | 5 +----
crates/ui2/src/components/keybinding.rs        | 2 +-
2 files changed, 2 insertions(+), 5 deletions(-)

Detailed changes

crates/command_palette2/src/command_palette.rs 🔗

@@ -79,10 +79,7 @@ impl Render for CommandPalette {
     type Element = Div;
 
     fn render(&mut self, _cx: &mut ViewContext<Self>) -> Self::Element {
-        v_stack()
-            .min_w_96()
-            .max_w(rems(36.))
-            .child(self.picker.clone())
+        v_stack().min_w_96().child(self.picker.clone())
     }
 }
 

crates/ui2/src/components/keybinding.rs 🔗

@@ -39,7 +39,7 @@ impl RenderOnce for KeyBinding {
                     .when(keystroke.modifiers.shift, |el| {
                         el.child(KeyIcon::new(Icon::Shift))
                     })
-                    // .when_some(key_icon, |el, icon| el.child(KeyIcon::new(icon)))
+                    .when_some(key_icon, |el, icon| el.child(KeyIcon::new(icon)))
                     .when(key_icon.is_none(), |el| {
                         el.child(Key::new(keystroke.key.to_uppercase().clone()))
                     })