File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ import {
2121 type PanelComponentType ,
2222 type PanelProps ,
2323} from './DashboardPlugin' ;
24+ import { event } from 'node_modules/@types/jquery' ;
2425
2526const log = Log . module ( 'PanelManager' ) ;
2627
@@ -140,25 +141,16 @@ class PanelManager {
140141 // PanelEvent.OPEN should be listened to by plugins to open a panel
141142
142143 this . navigationEventListenerRemovers . push (
143- listenForCycleToNextStack (
144- this . layout . eventHub ,
145- this . handleCycleToNextStack
146- )
144+ listenForCycleToNextStack ( eventHub , this . handleCycleToNextStack )
147145 ) ;
148146 this . navigationEventListenerRemovers . push (
149- listenForCycleToPreviousStack (
150- this . layout . eventHub ,
151- this . handleCycleToPreviousStack
152- )
147+ listenForCycleToPreviousStack ( eventHub , this . handleCycleToPreviousStack )
153148 ) ;
154149 this . navigationEventListenerRemovers . push (
155- listenForCycleToNextTab ( this . layout . eventHub , this . handleCycleToNextTab )
150+ listenForCycleToNextTab ( eventHub , this . handleCycleToNextTab )
156151 ) ;
157152 this . navigationEventListenerRemovers . push (
158- listenForCycleToPreviousTab (
159- this . layout . eventHub ,
160- this . handleCycleToPreviousTab
161- )
153+ listenForCycleToPreviousTab ( eventHub , this . handleCycleToPreviousTab )
162154 ) ;
163155 }
164156
You can’t perform that action at this time.
0 commit comments