anotherCoward

Results 6 comments of anotherCoward

Easiest method to solve it in your production code, is to prevent the script from loading by adding it dynamically if some conditions are met: ```html if (development) { let...

Today i tried it by adding the `Forwarded` header in the nginx config using: `proxy_set_header Forwarded "for=\"$remote_addr:$remote_port\"";` Using this it seems to work fine on multiple requests at once after...

Normal users (humans...) have a first name and surname in AD. Most service accounts don't. I wouldn't call it a bug. On a medium size business: * 942 results with...

For now, I have solved it with a simple MutationObserver on the respective form element. ```js if (!window.autoNumericGlobalListObserver) { const nuke = (removedNode) => { if (window.autoNumericGlobalList.has(removedNode)) { window.autoNumericGlobalList.delete(removedNode); }...

Sadly, there is no [`disconnectedCallback`](https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_custom_elements#custom_element_lifecycle_callbacks) for default elements. I kept Camunda Tasklist open (without the the cleanup observer) and after ~24hrs the WeakMap was still filled. Using a reference list...

Camunda is not refreshing the site, when the forms get submitted or when other forms are loaded. It just loads the HTML, attaches them, parses the scripts and executes them...