Legt de bestaande wijzigingen in de hoofdworktree vast voordat de laatste worktree wordt gemerged.\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
66 lines
955 B
Plaintext
66 lines
955 B
Plaintext
<% if(success.length) { %>
|
|
|
|
<div class="alert alert-success alert-dismissible" role="alert">
|
|
|
|
<%= success[0] %>
|
|
|
|
<button
|
|
type="button"
|
|
class="btn-close"
|
|
data-bs-dismiss="alert">
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<% } %>
|
|
|
|
|
|
<% if(error.length) { %>
|
|
|
|
<div class="alert alert-danger alert-dismissible" role="alert">
|
|
|
|
<%= error[0] %>
|
|
|
|
<button
|
|
type="button"
|
|
class="btn-close"
|
|
data-bs-dismiss="alert">
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<% } %>
|
|
|
|
|
|
<% if(info.length) { %>
|
|
|
|
<div class="alert alert-info alert-dismissible" role="alert">
|
|
|
|
<%= info[0] %>
|
|
|
|
<button
|
|
type="button"
|
|
class="btn-close"
|
|
data-bs-dismiss="alert">
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<% } %>
|
|
|
|
|
|
<% if(warning.length) { %>
|
|
|
|
<div class="alert alert-warning alert-dismissible" role="alert">
|
|
|
|
<%= warning[0] %>
|
|
|
|
<button
|
|
type="button"
|
|
class="btn-close"
|
|
data-bs-dismiss="alert">
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<% } %> |