Tarun Bhardwaj
Tarun Bhardwaj
## Description This patch addresses a concurrency issue where the same indicator, when used for multiple parallel requests, could result in a negative request count. This issue prevented the proper...
When using the same loading indicator for multiple parallel requests in htmx, there is an issue where the internal request count [here](https://github.com/bigskysoftware/htmx/blob/c247cae9bf04b5b274d3bd65937541e8224a359c/src/htmx.js#L2474) can inadvertently become negative, leading to the `htmx-request`...
HTMX currently throws an error when a null value is passed in the hx-vals attribute due to improper handling of null values. https://github.com/bigskysoftware/htmx/blob/326ff3b296cf5e3eb0ec7799a9f607818776628c/src/htmx.js#L3965 The issue arises because the existing logic...