In the invoiceDialog#292 closing with background clicking and escape key calls cancelChanges, which sets a callback.
With the new alert.show() function the event isn't even passed to the callback so this can never work:
event.preventDefault()
event.returnValue = true
However even befor, the event wasn't prevented in all circumstances.
Needs fixing and testing.
In the [`invoiceDialog#292`](http://code.tooloop.de/Tooloop/Caramel-CRM/src/commit/cacc3d59430b5eba178f927cd7801128328b217e/resources/js/components/documents/InvoiceDialog.vue#L292) closing with background clicking and escape key calls `cancelChanges`, which sets a callback.
With the new `alert.show()` function the event isn't even passed to the callback so this can never work:
```
event.preventDefault()
event.returnValue = true
```
However even befor, the event wasn't prevented in all circumstances.
Needs fixing and testing.
vollstock
added the Bug label 2025-10-30 11:47:17 +01:00
vollstock
added this to the 1.0 project 2025-10-30 11:47:17 +01:00
vollstock
added this to the 1.0 milestone 2025-12-04 10:26:14 +01:00
This repo is archived. You cannot comment on issues.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
In the
invoiceDialog#292closing with background clicking and escape key callscancelChanges, which sets a callback.With the new
alert.show()function the event isn't even passed to the callback so this can never work:However even befor, the event wasn't prevented in all circumstances.
Needs fixing and testing.