Skip to content

Commit

Permalink
Add static file calls to all image tags
Browse files Browse the repository at this point in the history
  • Loading branch information
maxxcrawford committed Jul 7, 2021
1 parent 1b70988 commit 6c6b042
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions privaterelay/templates/includes/dashboard-filter.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

<div class="c-filter">
<div class="c-filter-search">
<div class="c-filter-icon">
<img src="/static/images/icon-search.svg" alt="">
<div class="c-filter-icon js-filter-mobile-search-toggle">
<img alt="" src="{% static '/images/icon-search.svg' %}"/>
</div>
<form action="">
<input class="c-filter-search-input js-filter-search-input " type="search" name="search" id="search">
Expand All @@ -15,18 +15,18 @@
<span class="js-filter-case-total"></span>
</div>
<button class="c-filter-reset js-filter-reset">
<img src="/static/images/x-close.svg" alt="">
<img alt="" src="{% static '/images/x-close.svg' %}"/>
</button>
</form>
</div>
<div class="c-filter-date">
<div class="c-filter-icon">
<img src="/static/images/icon-calendar.svg" alt="">
<img alt="" src="{% static '/images/icon-calendar.svg' %}"/>
</div>
</div>
<div class="c-filter-cateogry">
<div class="c-filter-icon">
<img src="/static/images/icon-filter.svg" alt="">
<img alt="" src="{% static '/images/icon-filter.svg' %}"/>
</div>
</div>
<div class="c-filter-action">
Expand Down

0 comments on commit 6c6b042

Please sign in to comment.