Diego Nieto Cid
Diego Nieto Cid
Using `opencv4nodejs` inside a worker thread causes the error message `Module did not self-register`. To make it work the module must be context aware as described [here](https://nodejs.org/docs/latest-v10.x/api/addons.html#addons_context_aware_addons). To reproduce the...
TypeORM has a mode in which entities in a tree may share the same table as it's ancestor. It goes something like in the following snippets: ```typescript export enum PartyType...
I'm following and adjusting the instructions from the namespaces post ([here](https://www.compose.com/articles/transporters-namespace-aware-data-transfer/#changingnamespaces)), specially the part about changing the namespace of the transformed messages. My `pipeline.js` file looks like the snippet below:...
This PR adds support for internationalisation and provides translations for English and Spanish (the latter in a separate commit)
Dropdown menus in the toolbar are implemented as `button` tags but have no `type` property. The default value for that property is `submit` which means each time one toolbar menu...
Using summernote one can disable any input to an editor by executing the `disable` method like below. ``` $(".editor").summernote("disable") ``` Which also makes the editor look grey and all toolbar...
Trying to delete a contact note results in the following error: ---  --- It seems it tries to delete a contact insted of a note. Changing the line: https://github.com/refinedev/refine/blob/af05511094963c3c614f486b453f0838b60216a8/examples/app-crm/src/routes/contacts/components/comment/comment-list.tsx#L137...
The following URL gives a 400 error when trying to search the catalog: [https://demo.moqui.org/qapps/PopcAdmin/Catalog/Search?orderByField=-pseudoId&pageSize=20&queryString=*](https://demo.moqui.org/qapps/PopcAdmin/Catalog/Search?orderByField=-pseudoId&pageSize=20&queryString=*) Apparently, the service `org.moqui.search.SearchServices.search#DataDocuments` does not take into account fields that have a keyword subfield to...
The example's comments give wrong instructions regarding the configuration of NHost's OAuth callbacks: At line [10](https://github.com/nhost/nhost-dart/blob/main/packages/nhost_flutter_auth/example/lib/oauth_providers_example.dart#L10) it reads: ``` /// Success redirect URL: `nhost-example://oauth.login.success`. /// Failure redirect URL: `nhost-example://oauth.login.failure`. ```...
The bundled CSS in dist folder contains an `@import` statement in the middle of the file, while those should only appear before all other statements. Vite produces the following message...