app/views/fields/string/_show.html.erb in administrate-0.12.0 vs app/views/fields/string/_show.html.erb in administrate-0.13.0
- old
+ new
@@ -2,17 +2,17 @@
# String Show Partial
This partial renders a string attribute,
to be displayed on a resource's show page.
-By default, the attribute is rendered as an unformatted string.
+By default, the attribute is rendered as text with whitespace preserved.
## Local variables:
- `field`:
An instance of [Administrate::Field::String][1].
A wrapper around the String pulled from the database.
[1]: http://www.rubydoc.info/gems/administrate/Administrate/Field/String
%>
-<%= field.data %>
+<div class="preserve-whitespace"><%= field.data %></div>