diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/waev_web/templates/exports/show.html.eex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/waev_web/templates/exports/show.html.eex b/lib/waev_web/templates/exports/show.html.eex index 0ecf87b..6cf6d93 100644 --- a/lib/waev_web/templates/exports/show.html.eex +++ b/lib/waev_web/templates/exports/show.html.eex @@ -13,7 +13,7 @@ ID: <%= @id %> <div class="row"> <%= case message.side do %> <% :left -> %> - <div class="column wa-message column-75 "> + <div class="column wa-message column-75"> <% :right -> %> <div class="column wa-message column-75 column-offset-25"> <% nil -> %> @@ -27,7 +27,7 @@ ID: <%= @id %> <i><%= filename %></i> (fichero adjunto no disponible) <% end %> <% %Waev.Export.Message.Photo{filename: filename, mime: mime, blob: blob} -> %> - <div><img alt="<%= filename %>" src="data:<%= mime %>;base64,<%= blob %>" /></div> + <div><img class="wa-message-photo" alt="<%= filename %>" src="data:<%= mime %>;base64,<%= blob %>" /></div> <div><a href="<%= Routes.exports_path(@conn, :get_attachment, @id, filename) %>"><%= filename %></a></div> <% nil -> %> <% end %> |