Skip to content

Commit

Permalink
Fix submit button in crop by adding id (#2374)
Browse files Browse the repository at this point in the history
- Add missing ID to submit button in crop page.
  • Loading branch information
omar-ahmed42 authored Dec 2, 2024
1 parent de23bb7 commit 5b6f649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/templates/crop.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<input id="y" type="hidden" name="y">
<input id="width" type="hidden" name="width">
<input id="height" type="hidden" name="height">
<button type="submit" class="btn btn-primary" th:text="#{crop.submit}"></button>
<button id="submitBtn" type="submit" class="btn btn-primary" th:text="#{crop.submit}"></button>
</form>
<div id="canvasesContainer" style="position: relative; margin: 20px 0; width: auto;">
<canvas id="cropPdfCanvas" style="width: 100%"></canvas>
Expand Down

0 comments on commit 5b6f649

Please sign in to comment.