Skip to content

Commit 1754c06

Browse files
committed
Fix missing opening tag of the 'div' tag in the project_detail_notifiers.html file
There is a 'div' tag missing an opening tag in the file project_detail_notifiers.html. Although it is not causing any issues at the moment, it may lead to UI display errors in the future. We have added the opening tag for this 'div' tag.
1 parent 0029377 commit 1754c06

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

promgen/templates/promgen/project_detail_notifiers.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@
99
<div class="panel panel-default">
1010
{% include "promgen/notifier_block.html" with object=project show_edit=1 %}
1111
</div>
12-
{% if project.service.notifiers.count %}
12+
<div>
13+
{% if project.service.notifiers.count %}
1314
<a class="btn btn-default btn-xs" role="button" data-toggle="collapse"
1415
href="#show-service-senders" aria-expanded="false" aria-controls="collapseExample"
1516
>
1617
Show Service Notifiers ({{project.service.notifiers.count}})
1718
</a>
1819
{% include "promgen/notifier_block.html" with object=project.service collapse="show-service-senders" %}
19-
{% endif %}
20+
{% endif %}
2021
</div>

0 commit comments

Comments
 (0)