Skip to content

Commit a40747c

Browse files
committed
Adjust bindings in queries panel
1 parent fe792d3 commit a40747c

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

includes/panels/qbPanel.cfm

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ Description :
5454
<table border="0" align="center" cellpadding="0" cellspacing="1" class="fw_debugTables">
5555
<thead>
5656
<tr>
57-
<th>Timestamp</th>
58-
<th>Execution Time</th>
57+
<th width="15%">Timestamp</th>
58+
<th width="15%">Execution Time</th>
5959
<th>Bindings</th>
6060
</tr>
6161
</thead>
@@ -64,7 +64,11 @@ Description :
6464
<tr>
6565
<td>#TimeFormat(q.timestamp,"hh:MM:SS.l tt")#</td>
6666
<td>#q.executionTime# ms</td>
67-
<td><cfdump var="#q.bindings#" expand="false" /></td>
67+
<td>
68+
<cfif NOT q.bindings.isEmpty()>
69+
<cfdump var="#q.bindings#" expand="false" />
70+
</cfif>
71+
</td>
6872
</tr>
6973
</cfloop>
7074
</tbody>

0 commit comments

Comments
 (0)