File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,16 +20,16 @@ impl Widget for Bindings<'_> {
2020
2121 // On
2222 let col1: Vec < _ > =
23- bindings. iter ( ) . map ( |c| ListItem :: new ( c. on ( ) ) . style ( THEME . help . on . into ( ) ) ) . collect ( ) ;
23+ bindings. iter ( ) . map ( |c| ListItem :: new ( c. on ( ) ) . style ( THEME . help . on ) ) . collect ( ) ;
2424
2525 // Exec
2626 let col2: Vec < _ > =
27- bindings. iter ( ) . map ( |c| ListItem :: new ( c. exec ( ) ) . style ( THEME . help . exec . into ( ) ) ) . collect ( ) ;
27+ bindings. iter ( ) . map ( |c| ListItem :: new ( c. exec ( ) ) . style ( THEME . help . exec ) ) . collect ( ) ;
2828
2929 // Desc
3030 let col3: Vec < _ > = bindings
3131 . iter ( )
32- . map ( |c| ListItem :: new ( c. desc . as_deref ( ) . unwrap_or ( "-" ) ) . style ( THEME . help . desc . into ( ) ) )
32+ . map ( |c| ListItem :: new ( c. desc . as_deref ( ) . unwrap_or ( "-" ) ) . style ( THEME . help . desc ) )
3333 . collect ( ) ;
3434
3535 let chunks = layout:: Layout :: horizontal ( [
You can’t perform that action at this time.
0 commit comments