aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBonfaceKilz2021-12-22 13:40:30 +0300
committerBonfaceKilz2022-01-05 17:05:41 +0300
commita2941c93c724a1536e388fb45579524c61fb0441 (patch)
treee3b08dd94095c743d83c8c9609acc6a63394bb24
parent810d21845878afdffe5a3c7c35b0b88cb06fadbf (diff)
downloadgenenetwork2-a2941c93c724a1536e388fb45579524c61fb0441.tar.gz
display_diffs: Remove in-line styling from "pre" tag
-rw-r--r--wqflask/wqflask/templates/display_diffs.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/templates/display_diffs.html b/wqflask/wqflask/templates/display_diffs.html
index c7921b3e..e787e468 100644
--- a/wqflask/wqflask/templates/display_diffs.html
+++ b/wqflask/wqflask/templates/display_diffs.html
@@ -48,7 +48,7 @@
<tr>
<td>{{ data.get("Original") }}</td>
<td>{{ data.get("Current") }}</td>
- <td><pre style="font: courier">{{data.get("Diff")}}</pre></td>
+ <td><pre>{{data.get("Diff")}}</pre></td>
</tr>
{% endfor %}
</tbody>