Skip to content

Commit

Permalink
Merge pull request #35078 from dimagi/jls/buttons-appear
Browse files Browse the repository at this point in the history
Fixed buttons displayed in Solutions Feature Request modal
  • Loading branch information
orangejenny authored Sep 3, 2024
2 parents f56e32d + ba5ace3 commit 1ac87d5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ <h1 class="modal-title fs-5" id="reportAnIssueModalLabel">{% trans "Report an Is
<div class="modal-footer">
<button type="button"
id="bug-report-cancel"
class="btn btn-default"
class="btn btn-outline-secondary"
data-bs-dismiss="modal"
data-bind="enable: cancelBtnEnabled">{% trans 'Cancel' %}</button>
<button type="submit"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ <h1 class="modal-title fs-5" id="requestAFeatureModalLabel">{% trans "Make a Fea
<div class="modal-footer">
<button type="button"
id="request-report-cancel"
class="btn btn-default"
class="btn btn-outline-secondary"
data-bs-dismiss="modal"
data-bind="enable: cancelBtnEnabled">{% trans 'Cancel' %}</button>
<button type="submit"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@
+ <div class="modal-footer">
+ <button type="button"
+ id="bug-report-cancel"
+ class="btn btn-default"
+ class="btn btn-outline-secondary"
+ data-bs-dismiss="modal"
+ data-bind="enable: cancelBtnEnabled">{% trans 'Cancel' %}</button>
+ <button type="submit"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@
+ <div class="modal-footer">
+ <button type="button"
+ id="request-report-cancel"
+ class="btn btn-default"
+ class="btn btn-outline-secondary"
+ data-bs-dismiss="modal"
+ data-bind="enable: cancelBtnEnabled">{% trans 'Cancel' %}</button>
+ <button type="submit"
Expand Down

0 comments on commit 1ac87d5

Please sign in to comment.