Skip to content

Commit

Permalink
run fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredgalanis committed Jul 9, 2024
1 parent dbee972 commit 837bdb1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
16 changes: 8 additions & 8 deletions app/templates/not-found-error.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
</div>
<div class="col my-auto">
<h2>404: Page not found</h2>
<p class="helpful-text">
Looks like the page you're looking for does not exist. If you think there is a problem with the site, please
{{#if this.contactUrl}}
<a href="{{this.contactUrl}}">let us know</a>.
{{else}}
contact your administrator.
{{/if}}
</p>
<p class="helpful-text">
Looks like the page you're looking for does not exist. If you think there is a problem with the site, please
{{#if this.contactUrl}}
<a href="{{this.contactUrl}}">let us know</a>.
{{else}}
contact your administrator.
{{/if}}
</p>
</div>
</div>
4 changes: 3 additions & 1 deletion app/templates/submissions/detail.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,9 @@
<td data-label="icon">
{{#if (eq file.mimeType "png")}}
<i class="fas fa-file-image line-height-35 text-gray fa-30"></i>
{{else if (eq file.mimeType "vnd.openxmlformats-officedocument.presentationml.presentation")}}
{{else if
(eq file.mimeType "vnd.openxmlformats-officedocument.presentationml.presentation")
}}
<i class="fas fa-file-powerpoint line-height-35 text-gray fa-30"></i>
{{else if (eq file.mimeType "msword")}}
<i class="fas fa-file-word line-height-35 text-gray fa-30"></i>
Expand Down

0 comments on commit 837bdb1

Please sign in to comment.