BudgetMan
BudgetMan
> Any update on this ??? > > **i'm getting this error :** > > ``` > CreateVoucherListComponent.html:49 ERROR NullInjectorError: StaticInjectorError(AppModule)[DateTimeAdapter -> InjectionToken OWL_MOMENT_DATE_TIME_ADAPTER_OPTIONS]: > StaticInjectorError(Platform: core)[DateTimeAdapter -> InjectionToken OWL_MOMENT_DATE_TIME_ADAPTER_OPTIONS]:...
This can be reproduced with setting [useDefineForClassFields](https://www.typescriptlang.org/tsconfig#useDefineForClassFields) which is getting more wildly used. For example, MobX 6.x requires this setting to support decorators, making it incompatible with `@lazyInject`. It will...
This is an issue for us as well, because of using mobX with Inversify. [MobX 6.x requires the setting of useDefineForClassFields to true](https://github.com/mobxjs/mobx/discussions/3216) (or the Babel equivalent `["@babel/plugin-proposal-class-properties", { "loose":...
We have also run into this issue. *Steps to reproduce:* - Using the provided example nr. 46 (https://github.com/microsoft/BotBuilder-Samples/tree/main/samples/java_springboot/46.teams-auth) - Upgrade Spring Boot to 2.5 - Build a `.jar` and run...
@tracyboehrer we did a little experimentation trying to correct the issue. We made it go away by instantiating `ObjectMapper` like this: ``` JsonMapper.builder() .findAndAddModules() .addModule(new JavaTimeModule()) .build(); ``` This might...
> Or are you saying that findAndRegisterModules is also no longer working? It seems so. When we tried using only `findAndAddModules`, it did not work. Also, if I recall correctly,...
Any update on this issue? I would like to get started with push notifications on MacOS, but there don't seem to be any documentation on it.