Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Mar 12, 2024
1 parent 802f5c2 commit 7da4d16
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/templates/infrastructures.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
} else if (state == "failed" || state == "unconfigured" || state == "unknown" || state == "error" || state == "timeout") {
return "<span class='btn btn-danger btn-sm'>";
} else {
return "<span class='btn btn-warning btn-sm text-white'><span class='spinner-grow spinner-grow-sm'></span>";
return "<span class='btn btn-warning btn-sm text-white'><span class='spinner-grow spinner-grow-sm'></span> ";
}
}

Expand Down
4 changes: 2 additions & 2 deletions app/templates/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@
v = parts[1]
}
input_template = `
<div class="col col-md-4 ps-0">
<div class="col col-md-5 ps-0">
<input type="text" class="form-control" name="${tagname}_list_value_${num__{{key}}}_key" class="form-control" required value="${k}" placeholder="Key">
</div>
<div class="col col-md-5 ps-0">
<div class="col col-md-6 ps-0">
<input type="text" class="form-control" name="${tagname}_list_value_${num__{{key}}}_value" class="form-control" required pattern="${pattern}" value="${v}" placeholder="Value">
</div>`;
{% else %}
Expand Down
2 changes: 1 addition & 1 deletion app/templates/reconfigure.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</ul>
<!-- end tab creation section -->

<div class="tab-content">
<div class="tab-content mb-2">
<!-- inputs -->

{% for tab, input_dict in inputs.items() %}
Expand Down

0 comments on commit 7da4d16

Please sign in to comment.