Skip to content

Commit 7a92edc

Browse files
committed
CBDEBUGGER-6
make sure it's only stopped if not null
1 parent 0121741 commit 7a92edc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/assets/js/components/RequestTrackerPanel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export default ( isExpanded, refreshFrequency, hasReinitPassword, isVisualizer )
6767
} );
6868
},
6969
stopDebuggerMonitor(){
70-
if ( "refreshMonitor" in this ){
70+
if ( this.refreshMonitor != null ){
7171
clearInterval( this.refreshMonitor );
7272
this.refreshFrequency = 0;
7373
console.info( "Stopped ColdBox Debugger Profiler Refresh" );

0 commit comments

Comments
 (0)