Skip to content

Commit

Permalink
disabled default browser field validation, regression from #213 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hhund committed Jul 9, 2024
1 parent c19329f commit 0e0e4b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<ul class="error-list" th:for="${i.id}" th:if="${resource.status == 'in-progress'}"></ul>
</div>
<div class="row-submit" th:if="${resource.status == 'in-progress'}">
<button id="complete-questionnaire-response" type="submit" name="submit" class="submit">Submit</button>
<button id="complete-questionnaire-response" type="submit" name="submit" class="submit" formnovalidate>Submit</button>
</div>
</fieldset>
</form>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ <h3 th:if="${not #lists.isEmpty(task.input)}">Input</h3>
<ul class="error-list" th:for="${i.id}" th:if="${resource.status == 'draft'}"></ul>
</div>
<div class="row-submit" th:if="${resource.status == 'draft'}">
<button id="start-process" type="submit" name="submit" class="submit">Start Process</button>
<button id="start-process" type="submit" name="submit" class="submit" formnovalidate>Start Process</button>
</div>
</fieldset>
</form>
Expand Down

0 comments on commit 0e0e4b4

Please # to comment.