Skip to content

Commit

Permalink
fix submit button type
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Drahnik <[email protected]>
  • Loading branch information
ldrahnik committed Sep 12, 2021
1 parent 86d7a44 commit a37db3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ function createVyhledaniPacientaForm(Jmeno, Prijmeni, DatumNarozeni, StatniPrisl
if(!withoutSubmitButton) {
var submit = document.createElement("button");
submit.name = "_submit";
submit.type = isSubmitHidden ? "submit" : "hidden";
submit.type = "submit";
submit.setAttribute("class", "button-action ui-button ui-corner-all ui-widget")
submit.value = "None";
submit.innerHTML = "Detail pacienta";
Expand Down

0 comments on commit a37db3e

Please sign in to comment.