Lukas M. BeckX

Results 11 comments of Lukas M. BeckX

Gibt es hier schon etwas Neues?

Have the same problem. If I return a ```php return $this->json(['error' => '400'], Response::HTTP_BAD_REQUEST); ``` Then i get the response in the browser: ``` Access to fetch at ''https://my-api-host/my/post' from...

Thank you for the quick answer. Is there a simple way to modify the output or register a new value parser like "Rohdaten", "Ja/Nein", "Email", "Datum/Zeit", etc.?

This always happens when we have a checkbox menu. Form field config: ![image](https://github.com/terminal42/contao-leads/assets/11272361/0680053c-0662-4da7-abc1-f568b0c0368b) Form: ![image](https://github.com/terminal42/contao-leads/assets/11272361/4310bb3b-3baf-474e-b42f-23714ac72810) Export configuration: ![image](https://github.com/terminal42/contao-leads/assets/11272361/4474834c-e5da-44b5-8729-b2d2ae84bed6) Saved values and labels ![image](https://github.com/terminal42/contao-leads/assets/11272361/e6bd8e41-b9d7-41a2-8546-81bf9f36a106)

@zoglo I think that's it. I use https://mmenujs.com/ for the mobile menu and that builds a wrapper around the content for expanding and collapsing the mobile menu. ![image](https://github.com/user-attachments/assets/46a32b7b-c4d4-421c-baa8-4d33784ff402) If you...

> We do not have the time to investigate this for you, nor can we reproduce and thus fix it. > Just downgrade the Cookiebar and lock it to version...

Gibt es hier schon etwas Neues?

Quick reminder. I still think the feature is great.

@spuxx1701 As I remember, I used the following solutions for the problems. Install https://github.com/typestack/class-transformer Create the user entity ```typescript User.init({ id: { type: DataTypes.INTEGER, autoIncrement: true, allowNull: false, primaryKey: true,...

If you use nestjs, I can recommend this article from the documentation. https://docs.nestjs.com/interceptors My code to transform all outgoing entites: > transform.interceptor.ts ```typescript import { CallHandler, ExecutionContext, Injectable, NestInterceptor, }...