@@ -341,61 +341,29 @@ An enhanced error reporting and debugging tool for ColdBox Framework
341341 <div >
342342 <h2 class =" details-heading" >
343343 Exception Details
344- <!--- Only Show Code Preview Button in Debug Mode --->
345- <cfif stackFrames gt 0 AND local .inDebugMode >
346- <a href =" javascript:void(0);" onclick =" toggleCodePreview()" class =" button button-icononly" style =" margin-left: auto;" title =" Toggle Code Preview" >
347- <i id =" codetoggle-up" data-eva =" arrowhead-up-outline" ></i >
348- <i id =" codetoggle-down" class =" hidden" data-eva =" arrowhead-down-outline" ></i >
349- </a >
350- </cfif >
344+ <div class =" control-bar" >
345+ <select id =" scope-filter" onchange =" filterScopesFromDropdown(this)" class =" scope-dropdown" title =" Filter Scopes" >
346+ <option value =" " >📊 Show All Scopes</option >
347+ <option value =" eventdetails" >❌ Error Details</option >
348+ <option value =" serverinfo_scope" >🏗️ Server Info</option >
349+ <option value =" database_scope" >🗄️ Database</option >
350+ <option value =" rc_scope" >📨 Request Collection (RC)</option >
351+ <option value =" prc_scope" >📬 Private Request Collection (PRC)</option >
352+ <option value =" headers_scope" >📋 Headers</option >
353+ <option value =" session_scope" >👤 Session</option >
354+ <option value =" application_scope" >🏢 Application</option >
355+ <option value =" cookies_scope" >🍪 Cookies</option >
356+ <option value =" stacktrace_scope" >📚 Stacktrace</option >
357+ </select >
358+ <!--- Only Show Code Preview Button in Debug Mode --->
359+ <cfif stackFrames gt 0 AND local .inDebugMode >
360+ <a href =" javascript:void(0);" onclick =" toggleCodePreview()" class =" button button-icononly" title =" Toggle Code Preview" >
361+ <i id =" codetoggle-up" data-eva =" arrowhead-up-outline" ></i >
362+ <i id =" codetoggle-down" class =" hidden" data-eva =" arrowhead-down-outline" ></i >
363+ </a >
364+ </cfif >
365+ </div >
351366 </h2 >
352- <div class =" data-filter" title =" Filter Scopes" >
353- <i data-eva =" funnel-outline" fill =" white" ></i >
354- <a
355- class =" button all active"
356- href =" javascript:void(0);"
357- onclick =" filterScopes( this, '' );" >📊 All</a >
358- <a
359- class =" button eventdetails"
360- href =" javascript:void(0);"
361- onclick =" filterScopes( this, 'eventdetails' );" >❌ Error</a >
362- <a
363- class =" button serverinfo_scope"
364- href =" javascript:void(0);"
365- onclick =" filterScopes( this, 'serverinfo_scope' );" >🏗️ Server info</a >
366- <a
367- class =" button database_scope"
368- href =" javascript:void(0);"
369- onclick =" filterScopes( this, 'database_scope' );" >🗄️ Database</a >
370- <a
371- class =" button rc_scope"
372- href =" javascript:void(0);"
373- onclick =" filterScopes( this, 'rc_scope' );" >📨 RC</a >
374- <a
375- class =" button prc_scope"
376- href =" javascript:void(0);"
377- onclick =" filterScopes( this, 'prc_scope' );" >📬 PRC</a >
378- <a
379- class =" button headers_scope"
380- href =" javascript:void(0);"
381- onclick =" filterScopes( this, 'headers_scope' );" >📋 Headers</a >
382- <a
383- class =" button session_scope"
384- href =" javascript:void(0);"
385- onclick =" filterScopes( this, 'session_scope' );" >👤 Session</a >
386- <a
387- class =" button application_scope"
388- href =" javascript:void(0);"
389- onclick =" filterScopes( this, 'application_scope' );" >🏢 Application</a >
390- <a
391- class =" button cookies_scope"
392- href =" javascript:void(0);"
393- onclick =" filterScopes( this, 'cookies_scope' );" >🍪 Cookies</a >
394- <a
395- class =" button stacktrace_scope"
396- href =" javascript:void(0);"
397- onclick =" filterScopes( this, 'stacktrace_scope' );" >📚 Stacktrace</a >
398- </div >
399367 </div >
400368
401369 <!----------------------------------------------------------------------------------------->
0 commit comments