apply type="button" on all buttons to make submit on enter work

This commit is contained in:
Jakob Ketterl
2021-03-03 23:25:00 +01:00
parent 3814200452
commit 4e14b29537
8 changed files with 13 additions and 13 deletions

View File

@ -42,7 +42,7 @@ class Input(ABC):
input=input,
infotext=infotext,
removable="removable" if self.removable else "",
removebutton='<button class="btn btn-sm btn-danger option-remove-button">Remove</button>'
removebutton='<button type="button" class="btn btn-sm btn-danger option-remove-button">Remove</button>'
if self.removable
else "",
)

View File

@ -227,7 +227,7 @@ class SchedulerInput(Input):
<div class="row scheduler-static-time-inputs">
{time_inputs}
{select}
<button class="btn btn-sm btn-danger remove-button">X</button>
<button type="button" class="btn btn-sm btn-danger remove-button">X</button>
</div>
""".format(
time_inputs=render_time_inputs(slot),
@ -241,10 +241,10 @@ class SchedulerInput(Input):
<div class="row scheduler-static-time-inputs template" style="display: none;">
{time_inputs}
{select}
<button class="btn btn-sm btn-danger remove-button">X</button>
<button type="button" class="btn btn-sm btn-danger remove-button">X</button>
</div>
<div class="row">
<button class="btn btn-sm btn-primary col-12 add-button">Add...</button>
<button type="button" class="btn btn-sm btn-primary col-12 add-button">Add...</button>
</div>
""".format(
rows=rows,

View File

@ -11,8 +11,8 @@ class ImageInput(Input, metaclass=ABCMeta):
<div class="image-container">
<img class="{classes}" src="{url}" alt="{label}"/>
</div>
<button class="btn btn-primary upload">Upload new image...</button>
<button class="btn btn-secondary restore">Restore original image</button>
<button type="button" class="btn btn-primary upload">Upload new image...</button>
<button type="button" class="btn btn-secondary restore">Restore original image</button>
</div>
""".format(
id=self.id, label=self.label, url=self.cachebuster(self.getUrl()), classes=" ".join(self.getImgClasses())