From db0e5cdcd40cffb662a4714894a696dbb5e8e1ec Mon Sep 17 00:00:00 2001
From: Andreas Valder <andreasv@fsmpi.rwth-aachen.de>
Date: Sat, 10 Sep 2016 00:21:25 +0200
Subject: [PATCH] no more line breaks in changelog columns time and path

---
 templates/changelog.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/templates/changelog.html b/templates/changelog.html
index 916cc3f..70b8ee1 100644
--- a/templates/changelog.html
+++ b/templates/changelog.html
@@ -21,9 +21,9 @@
 				</tr>
 				{% for i in changelog %}
 					<tr>
-						<td>{{i.when}}</td>
+						<td style="white-space: nowrap;">{{i.when}}</td>
 						<td>{% if (i.who != i.who|string) %}{{i.realname}} ({{i.who}}){% else %}{{i.who}}{%endif%}</td>
-						<td>{{i.path}}</td>
+						<td style="white-space: nowrap;">{{i.path}}</td>
 						<td>"{{i.value_old}}"</td>
 						<td>"{{i.value_new}}"</td>
 						<td><button onclick="moderatorinterface.set('{{i.path}}','{{i.value_old}}');alert('done');" class="btn btn-default">undo</button></td>
-- 
GitLab