| |
@@ -31,7 +31,7 @@
|
| |
<div class="float-right">
|
| |
{% if branchname in g.branches %}
|
| |
<div class="btn-group">
|
| |
- <a href="#" type="button" class="btn btn-outline-light border-secondary text-dark btn-sm dropdown-toggle"
|
| |
+ <a href="#" class="btn btn-outline-light border-secondary text-dark btn-sm dropdown-toggle"
|
| |
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
| |
<span class="fa fa-random fa-fw"></span> Branch: <span class="font-weight-bold">{{ branchname }}</span>
|
| |
</a>
|
| |
@@ -50,7 +50,7 @@
|
| |
</div>
|
| |
</div>
|
| |
{% else %}
|
| |
- <a href="#" type="button" class="btn btn-outline-light border-secondary text-dark btn-sm"
|
| |
+ <a href="#" class="btn btn-outline-light border-secondary text-dark btn-sm"
|
| |
aria-haspopup="true" aria-expanded="false">
|
| |
Commit: <span class="font-weight-bold">{{ branchname }}</span>
|
| |
</a>
|
| |
having the html attribute type="button" on dropdown toggles in
elements was causing chrome to render them weirdly, so this
removes all those attributes.
Fixes #3596