Skip to content

Commit

Permalink
Fix #1220 be removing old check on perms that got missed
Browse files Browse the repository at this point in the history
  • Loading branch information
epugh committed Feb 11, 2025
1 parent 3cd63b9 commit 9450afd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/assets/javascripts/components/delete_case/_modal.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ <h3 class="modal-title">Delete This Case</h3>
<p>You're about to delete this case forever! If you think you might want it later, use the Archive function instead.</p>
</div>
<div class="modal-footer">
<button class="btn btn-danger" ng-show="ctrl.canDelete" ng-click="ctrl.ok()">Delete</button>
<button class="btn btn-danger" ng-click="ctrl.ok()">Delete</button>
<button class="btn btn-default" ng-click="ctrl.cancel()">Cancel</button>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ <h3 class="modal-title">Delete This Scorer</h3>
<p>You're about to delete this scorer forever!</p>
</div>
<div class="modal-footer">
<button class="btn btn-danger" ng-show="ctrl.canDelete" ng-click="ctrl.ok()">Delete</button>
<button class="btn btn-danger" ng-click="ctrl.ok()">Delete</button>
<button class="btn btn-default" ng-click="ctrl.cancel()">Cancel</button>
</div>

0 comments on commit 9450afd

Please sign in to comment.