Ludger Ey

Results 12 comments of Ludger Ey

Having the same problem. Any ideas? I've followed the docs https://docs.nestjs.com/faq/serverless step by step. Except that I've left `main.ts` as it was a used `lambda.ts` instead. Edit: For me it...

Sorry. I pasted the wrong example! I am talking about this: https://github.com/Jacse/react-native-app-intro-slider/blob/master/examples/examples/CustomButtons/index.tsx The buttons have no click handler and apparently there is no other magic that make them work. So...

How is this still not fixed? Isn't it a major bug? Is there any other way to open a url in the system browser from within in inappbrowser?

To determine the position of elements in the same level I have found a solution, based on this [article](https://dico.duba.dev/nested-sets-performant-attribute-calculation-on-collections/). The proposed raw sql is: ```sql SELECT COUNT(*) as `position` FROM...

My additional workaround migration code using `id` as source value: **Without scoping:** ```php \App\Unit::each(function (\App\Unit $unit) { $unit->setLft($unit->id * 2 - 1); $unit->setRgt($unit->id * 2); $unit->save(); }); ``` **With scoping:**...

I found my error. I had some left-over code in my default Eloquent query, that led to the superfluous `*`. After removing this, the library works as desired: ```php static::addGlobalScope('order',...

Same here. ```ts @Column({ type: "text", default: () => "0" }) status: TemplateDraftStatus; ``` `typeorm migration:generate`will always create this, even after migration has been executed: ```ts public async up(queryRunner: QueryRunner):...

> > Same here. > > ```ts > > @Column({ type: "text", default: () => "0" }) > > status: TemplateDraftStatus; > > ``` > > > > > >...

I have the same issue. Basically this makes mods impossible for Class Decorators.

I am interested in this too. If I understand this correctly the sqs endpoint should return an id. Why do I need to create it myself beforehand?