diff --git a/src/main/webapp/scripts/app/visits/visits.template.html b/src/main/webapp/scripts/app/visits/visits.template.html
index fa27dad28cc703455aecea5c808cd72c7eb22651..6273d787d06422b13c422ea444ff8baa16ee3339 100644
--- a/src/main/webapp/scripts/app/visits/visits.template.html
+++ b/src/main/webapp/scripts/app/visits/visits.template.html
@@ -19,9 +19,9 @@
 </form>
 
 <h3>Previous Visits</h3>
-<table class="table table-striped">
+<table class="table">
     <tr ng-repeat="v in $ctrl.visits">
         <td class="col-sm-2">{{v.date}}</td>
-        <td>{{v.description}}</td>
+        <td style="white-space: pre-line">{{v.description}}</td>
     </tr>
 </table>
\ No newline at end of file