Skip to content

Commit

Permalink
[frontend/task_dispenser] fix regression due to bootstrap update
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonygego committed Aug 1, 2023
1 parent a0674f2 commit 61ead04
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
{% set succeeded = tasks_data[taskid]["succeeded"] %}
{% set completion = tasks_data[taskid]["grade"] %}
<a href="{{ get_homepath() }}/course/{{course.get_id()}}/{{taskid}}" class="list-group-item list-group-item-action
{% if not accessibilities[user_manager.session_username()][taskid].is_open() %} disabled {% endif %}">
{% if not accessibilities[user_manager.session_username()][taskid].is_open() %} disabled {% endif %}" style="pointer-events: auto;">
<div class="row">
<div class="col-xs-12 col-md-7 pl-1">
<i style="color: {% if succeeded %}#468847{% else %}transparent{% endif %};" class="fa fa-check"></i>
Expand Down

0 comments on commit 61ead04

Please sign in to comment.