Skip to content

Commit

Permalink
CV2-3798: fix check logo for other templates
Browse files Browse the repository at this point in the history
  • Loading branch information
melsawy committed Oct 25, 2023
1 parent 64671ba commit 1be9c91
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/views/shared/_header.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,11 @@
<table cellpadding="0" cellspacing="0" border="0" width="auto" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
<tr>
<td class="header__logo" width="70%" hstyle="border-collapse: collapse; line-height: 0; padding: 0 !important;">
<%= image_tag(@logo_url, alt: "Check", height: "28", width: "110", style: "-ms-interpolation-mode: bicubic; border: 0 none; height: auto !important; line-height: 100%; outline: none; text-decoration: none;") %>
<% if @logo_url %>
<%= image_tag(@logo_url, alt: "Check", height: "28", width: "110", style: "-ms-interpolation-mode: bicubic; border: 0 none; height: auto !important; line-height: 100%; outline: none; text-decoration: none;") %>
<% else %>
<%= image_tag("https://images.ctfassets.net/g118h5yoccvd/1An4hBbtROLoCZqgfwLbxC/3babfcd84279f5633fe2e7f58996c30f/Check_white.png", alt: "Check", height: "28", width: "110", style: "-ms-interpolation-mode: bicubic; border: 0 none; height: auto !important; line-height: 100%; outline: none; text-decoration: none;") %>
<% end %>
</td>
<!-- Header link-->
</tr>
Expand Down

0 comments on commit 1be9c91

Please sign in to comment.