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 @@ -30,7 +30,7 @@ export function closePromises () {
30
30
const panes = specifiedPanes ( )
31
31
32
32
const promises = panes . map ( pane => {
33
- return pane ( ) . close ( )
33
+ return pane . close ( )
34
34
} )
35
35
36
36
return promises
@@ -75,10 +75,10 @@ function openPanesHelper (panes) {
75
75
}
76
76
77
77
const pane = panes . shift ( )
78
- pane ( ) . open ( ) . catch ( ( err ) => {
78
+ pane . open ( ) . catch ( ( err ) => {
79
79
// @FIXME : This is a temporal remedy for https://github.com/JunoLab/atom-julia-client/pull/561#issuecomment-500150318
80
80
console . error ( err )
81
- pane ( ) . open ( )
81
+ pane . open ( )
82
82
} ) . finally ( ( ) => {
83
83
// Re-focus the previously focused pane (i.e. the bundled pane by `bundlePanes`) after each opening
84
84
// This prevents opening multiple panes with the same splitting rule in a same location from
You can’t perform that action at this time.
0 commit comments