Skip to content

Commit df8fa41

Browse files
committed
more ui fixes for exception data
1 parent 6b0332e commit df8fa41

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

resources/assets/sass/App.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@
122122
background-color: #CFE9FF;
123123
font-weight:bold;
124124
padding: 5px 5px;
125+
vertical-align: top;
125126
}
126127
tr{
127128
background-color: white;

views/main/panels/exceptionPanel.cfm

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,12 @@
2020
#thisItem# :
2121
</th>
2222
<td class="cbd-cellBreak">
23-
<div class="cbd-cellScroller">
23+
<div>
2424
<!--- Simple value Exceptions --->
2525
<cfif isSimpleValue( args.profiler.exception[ thisItem ] )>
2626

2727
<cfif thisItem eq "stacktrace">
28-
<code>
29-
#exceptionBean.processStackTrace( args.profiler.exception[ thisItem ] )#
30-
</code>
28+
<code><pre>#exceptionBean.processStackTrace( args.profiler.exception[ thisItem ] )#</pre></code>
3129
<cfelse>
3230
#args.profiler.exception[ thisItem ]#
3331
</cfif>
@@ -65,11 +63,9 @@
6563
</div>
6664

6765
<!--- Code Print --->
68-
<cfif thisTagContext.keyExists( "codePrintHTML" )>
66+
<cfif thisTagContext.keyExists( "codePrintPlain" )>
6967
<div class="mt5 cbd-text-muted">
70-
<code>
71-
#thisTagContext.codePrintHTML#
72-
</code>
68+
<code><pre>#thisTagContext.codePrintPlain#</pre></code>
7369
</div>
7470
</cfif>
7571
</div>

0 commit comments

Comments
 (0)