mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 19:06:20 +00:00
fixup! fix: no enviar el formulario si tiene algún atributo de htmx
This commit is contained in:
parent
be59478c02
commit
ce3ab24dc0
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ export default class extends Controller {
|
||||||
if (this.element.reportValidity()) {
|
if (this.element.reportValidity()) {
|
||||||
this.element.classList.remove("was-validated");
|
this.element.classList.remove("was-validated");
|
||||||
|
|
||||||
if (!this.element.getAttributeNames().some(x => x.startsWith("hx-"))) this.element.submit();
|
if (this.element.getAttributeNames().some(x => x.startsWith("hx-"))) this.element.submit();
|
||||||
|
|
||||||
window.dispatchEvent(new CustomEvent("notification:show", { detail: { id: this.submittingIdValue } }));
|
window.dispatchEvent(new CustomEvent("notification:show", { detail: { id: this.submittingIdValue } }));
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue