Nicolas Perraut

Results 17 comments of Nicolas Perraut

Up! H5ai is now in 0.29.0 version @combro2k It can be good to update this when you rewrite your PR nah?

Let's go then! Thanks

My 2 cents trying to be constructive. There is two aspects in the original proposal: - Improve the trashcan versioner with an option to only store deleted files (not modifications)....

I've found a workaround: In mongoose, you have an `add` method on models that allows you to concatenate model definitions (https://mongoosejs.com/docs/api/schema.html#schema_Schema-add). I split my model declaration in two steps. First...

@grimmer0125 What kind of exception? It's fine on my side

@grimmer0125 Add `seriesRef: Type.ref(Type.objectId())` in your `createSchema` object

For reference, here a working snippet from my code base: ```ts export const ProductSchema = createSchema({ diluent: Type.object({ required: true }).of({ paintbrush: Type.ref(Type.objectId()), spray: Type.ref(Type.objectId()) }) }); /* WORKAROUND: https://github.com/BetterCallSky/ts-mongoose/issues/35...

Here my quick and dirty, only-for-my-needs snippet. No time now to make it more configurable and push a PR ``` dart listSuggestionsEntry = OverlayEntry(builder: (context) { return Positioned( width: width,...

@marcelser It works fine on my side. This snippet was extracted from a working and published app (I've added missing bracket). Without more precise information I can't help you.

I'm sorry @sirapolw I couldn't help you. It was working for me in December. Since then the project was shipped to my client and I do not maintain it anymore.