Skip to content

Commit

Permalink
Attributes should be double quote
Browse files Browse the repository at this point in the history
  • Loading branch information
lwesterhof committed Aug 13, 2024
1 parent ccd3ff8 commit 8d96743
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion fileviewer/templates/fileviewer/file.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% block title %}{{ super() }} - File Viewer{% endblock title %}

{% block style %}
<link id='pagestyle' rel="stylesheet" {% if g.settings and g.settings.color_mode and g.settings.color_mode == 'DARK' %}href="{{url_for('static', filename='lib/highlight-js-11.9.0/styles/dark.min.css')}}"{% else %}href="{{url_for('static', filename='lib/highlight-js-11.9.0/styles/default.min.css')}}"{% endif %}>
<link id="pagestyle" rel="stylesheet" {% if g.settings and g.settings.color_mode and g.settings.color_mode == 'DARK' %}href="{{url_for('static', filename='lib/highlight-js-11.9.0/styles/dark.min.css')}}"{% else %}href="{{url_for('static', filename='lib/highlight-js-11.9.0/styles/default.min.css')}}"{% endif %}>
{% endblock style %}

{% block scripts %}
Expand Down
2 changes: 1 addition & 1 deletion user/templates/user/data_transfer.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
{% endblock %}

{% block style %}
<link id='pagestyle' rel="stylesheet" {% if g.settings and g.settings.color_mode and g.settings.color_mode == 'DARK' %}href="{{url_for('static', filename='lib/highlight-js-11.9.0/styles/dark.min.css')}}"{% else %}href="{{url_for('static', filename='lib/highlight-js-11.9.0/styles/default.min.css')}}"{% endif %}>
<link id="pagestyle" rel="stylesheet" {% if g.settings and g.settings.color_mode and g.settings.color_mode == 'DARK' %}href="{{url_for('static', filename='lib/highlight-js-11.9.0/styles/dark.min.css')}}"{% else %}href="{{url_for('static', filename='lib/highlight-js-11.9.0/styles/default.min.css')}}"{% endif %}>
{% endblock style %}

{% block content %}
Expand Down
6 changes: 3 additions & 3 deletions vault/templates/vault/browse.html
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ <h5 class="modal-title">Download datapackage</h5>
</div>
<div class="modal-footer">
<button class="btn btn-secondary" data-bs-dismiss="modal">Cancel</button>
<button class='btn btn-primary action-confirm-vault-download'>Confirm download</button>
<button class="btn btn-primary action-confirm-vault-download">Confirm download</button>
</div>
</div>
</div>
Expand All @@ -271,7 +271,7 @@ <h5 class="modal-title">Archive datapackage to tape</h5>
</div>
<div class="modal-footer">
<button class="btn btn-secondary" data-bs-dismiss="modal">Cancel</button>
<button class='btn btn-primary action-confirm-vault-archival'>Confirm archive</button>
<button class="btn btn-primary action-confirm-vault-archival">Confirm archive</button>
</div>
</div>
</div>
Expand All @@ -289,7 +289,7 @@ <h5 class="modal-title">Unarchive datapackage from tape</h5>
</div>
<div class="modal-footer">
<button class="btn btn-secondary" data-bs-dismiss="modal">Cancel</button>
<button class='btn btn-primary action-confirm-vault-unarchive'>Confirm unarchive</button>
<button class="btn btn-primary action-confirm-vault-unarchive">Confirm unarchive</button>
</div>
</div>
</div>
Expand Down

0 comments on commit 8d96743

Please sign in to comment.