We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe792d3 commit a40747cCopy full SHA for a40747c
includes/panels/qbPanel.cfm
@@ -54,8 +54,8 @@ Description :
54
<table border="0" align="center" cellpadding="0" cellspacing="1" class="fw_debugTables">
55
<thead>
56
<tr>
57
- <th>Timestamp</th>
58
- <th>Execution Time</th>
+ <th width="15%">Timestamp</th>
+ <th width="15%">Execution Time</th>
59
<th>Bindings</th>
60
</tr>
61
</thead>
@@ -64,7 +64,11 @@ Description :
64
65
<td>#TimeFormat(q.timestamp,"hh:MM:SS.l tt")#</td>
66
<td>#q.executionTime# ms</td>
67
- <td><cfdump var="#q.bindings#" expand="false" /></td>
+ <td>
68
+ <cfif NOT q.bindings.isEmpty()>
69
+ <cfdump var="#q.bindings#" expand="false" />
70
+ </cfif>
71
+ </td>
72
73
</cfloop>
74
</tbody>
0 commit comments