Preserve spacig and line-breaks in sql result output
authorKarl O. Pinc <kop@karlpinc.com>
Tue, 24 Sep 2024 18:48:10 +0000 (13:48 -0500)
committerKarl O. Pinc <kop@karlpinc.com>
Tue, 24 Sep 2024 18:48:10 +0000 (13:48 -0500)
src/pgwui_sql/templates/sql.mak

index 837f1115e6e23a2c02fc13517d1cf865e5ab6194..7e28e0db8cfce205d1b2da598d58d51b1d8d45d2 100644 (file)
@@ -79,7 +79,7 @@
 <%def name="render_row(data)">
   <tr>
     % for item in data:
-      <td>${item}</td>
+      <td class="sqltext">${item}</td>
     % endfor
   </tr>
 </%def>