Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Commit

Permalink
- code refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
hamzabinkhalid committed May 9, 2024
1 parent 794cae7 commit 724d550
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runner/src/server/views/partials/summary-row.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{% for itemValue in item.value%}
{{itemValue}}<br>
{% endfor %}
{% elif item.type == 'NumberField' or item.type == 'WebsiteField' and not ( item.value.startswith('https://') or item.value.startswith('http://') ) %}
{% elif item.type == 'NumberField' or item.type == 'WebsiteField' and not ( 'https://' in item.value or 'http://' in item.value ) %}
{{item.prefix}}{{item.value}}
{% elif item.type == 'ClientSideFileUploadField' %}
{% if item.value.files|length == 0 %}
Expand Down

0 comments on commit 724d550

Please sign in to comment.