Volodymyr Strilets

Results 7 comments of 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 ![image](https://user-images.githubusercontent.com/29280344/149906251-4bbdf671-d449-4a56-a3cb-ff5a523d678f.png) 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.