Marek Grzybek
Marek Grzybek
**System Info** - Kooha version 2.0.1 - Distro information and version EndeavourOS (Arch) - Desktop Environment information and version GNOME 41 - Display Server X11 - Flatpak? No **Describe the...
When using it with Angular Universal I get the following error on the server: ``` ERROR { NAMESPACE_ERR: NAMESPACE_ERR (14): the operation is not allowed by Namespaces in XML code:...
Two things from my side: 1. Is there a reason to use `Set` inside the example function? Considering there's also `Array.prototype.includes`: ```diff Array.prototype.diff = function diff(comparisonArray) { - const hash...
Features: * Hide buttons after timeout * Support `data` attribute for specifying the gallery * Gallery loop back * CJS + ESM bundle formats * option to disable focus functionality...
To enable gallery looping set the `loop` option ```js baguetteBox.run('.gallery', { loop: true }); ```
I've been trying to fetch ticket audits with preloaded users but it only returns User objects instead of Audit. I call it like this: ```py audits = zenpy_client.tickets.audits(ticket, include='users') ```...
React `StrictMode` is throwing a warning because of `findDOMNode` usage. Are you considering changing the approach?
When using an ssh remote URL it seems to produce invalid GitHub pages link: ```sh => Deploying storybook executing: git push --force --quiet [email protected]:feimosi/my-repo.git master:gh-pages => Storybook deployed to: https://git.github.io/my-repo/...
I think it's quite convenient to put a comment inside an empty function explaining why it's empty e.g. `onClick = () => { /* TODO: */ }` or `run(() =>...