Volodymyr Strilets
Volodymyr Strilets
@ukrbublik can you please help us here I found the OptGroup component, but I still have no idea how I should pass the props from my Field  from here...
Had a similar issue. I have 2 guards: `AuthGuard` and `RoleGuard` based on [NestJS documentaion](https://docs.nestjs.com/security/authorization). Appling `RoleGuard` as global throws an error: `user is undefined`. Meanwhile, using both guards inside...
@svorcan any update? Right now I have to set `@Expose()` decorator on every param in my `response.dto` class, like this ``` @Exclude() export class MyEntityResponse { @Expose() id: string; @Expose()...
Hi everyone, I had the same issue. As my parent has `display: flex; height: 100%` I use `{children}` It works like a charm ;)
Hi, any updates on this? Thanks
For those who are looking for a clean approach, you could use the combination of `@IsOptional` with `@IsNotEmpty()`: ``` @IsNotEmpty() @IsString() @IsOptional() name: string; ``` As the decorators are applied...
Hi, in my case req.db returns the default database "admin". How can I specify the name of the database I want to be used? Thanks.