diff options
author | Guillermo Ramos | 2020-02-06 14:31:35 +0100 |
---|---|---|
committer | Guillermo Ramos | 2020-02-06 14:49:23 +0100 |
commit | 59d69bf9c3922a01f6f8db9663c5ea8017a2103e (patch) | |
tree | 4a9ef3ca49672b0b4247a2d2467c6e0a154cbaa8 /lib/waev_web/templates/exports | |
parent | 83a41618bdabd355757d8e585b9b9419427e591c (diff) | |
download | waev-59d69bf9c3922a01f6f8db9663c5ea8017a2103e.tar.gz |
Style
Diffstat (limited to 'lib/waev_web/templates/exports')
-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 %> |