Leonid Ilin
Leonid Ilin
I confirm, bug reproduced. Was downgrade to version 2.2.1 of foundation-emails package and it's working again
May be my solution for 3 fields, will be helpful to someone ```typescript @IsOptional() aField: string; @IsOptional() bField: string; @IsOptional() cField: string; // validation that only 1 (or 0 -...
> I think it's a problem with typescript compile settings. target > > I just got this error in es2022. I face up with same problem. And you are right!...
So reason is [useDefineForClassFields](https://www.typescriptlang.org/tsconfig/#useDefineForClassFields) option in tsconfig. For target ES2022 or higher this option is `"useDefineForClassFields": true` by default otherwise `false`. After changing tsconfig to this: ``` { "compilerOptions": {...
+1 same behavior. Works with **pages** folder and not working in **app** folder
Same problem. Firefiox 63.0.1 (x64). Very annoying. But for restoring tab you can press browser "Go back" button (if it active).
Try to pass `properties` option into `uploadFeature` function, like in these examples: https://github.com/SoftwareBrothers/adminjs-upload/blob/master/example-app/src/admin/resources/photo/photo.resource.ts#L14 ```JS features: [uploadFeature({ componentLoader, provider: { local: { bucket: 'public', opts: {} } }, properties: { file:...