Fix transaction item modal closing when scanning barcode
All checks were successful
Docker Image CI / build (push) Successful in 2m26s

This commit is contained in:
James Chapman 2024-07-11 21:07:04 +01:00
parent a48df4e2da
commit 6abff69bcb
Signed by: jamsch0
GPG Key ID: 765FE58130277547

View File

@ -13,7 +13,7 @@ export default class ModalController extends Controller {
if (!this.element.open) {
return;
}
if (event.type === "turbo:submit-end" && (event.detail.formSubmission.method === 0 || !event.detail.success)) {
if (event.type === "turbo:submit-end" && (event.detail.formSubmission.method === "get" || !event.detail.success)) {
// Don't close modal if form method was GET or submission failed
return;
}