Shy Agam
Shy Agam
I don't have nested Git repos, however my problem feels related: Automatic config works. As soon as I add a manual `wallaby.js` file I see the error message. I remove...
I resolved the issue by: 1. Moving my `wallaby.js` to the root workspace folder (not the library project folder). 2. Cleaning the file. 3. Adding `autoDetect: true`. 4. Adding the...
I second that request.
It would be nice to have the flexibility of both. You either set a prop with `center | start | end` and get out of the box scrolling, or use...
Just use one of the following observables: * `onDefaultLangChange` * `onLangChange` * `onTranslationChange` You would probably want to pipe it with a `take(1)` operator to avoid triggering your code multiple...
Seems like you're translation id is reversed. It should match your data hierarchy. Try `this.translate.instant('TABLE.ORGANISATION')`.
A simple solution would be to expose a promise in your service and extract its `resolve()` function: ```typescript class YourLangService { public isReady: Promise; private resolveIsReady: (locale: string) => void;...