Vlad Kasianenko
Vlad Kasianenko
There's no way to save the output from the `show` command.  `terraform show -json > $(Build.ArtifactStagingDirectory)/tfstate.json` is what I run as a bash command instead. I guess it would...
``` html ``` Output:  Expected: - mapbox logo is over the custom attributtion - controls are over mapbox logo - controls are not as wide as logo
Hello. I'm facing an issue with loading translations. The thing is only `main` is loading, but everything else is not. What I'm doing wrong? `translate.loader.ts` ``` ts import { TranslateLoader...
### Current behavior Angular 12 with @ngx-translate. After running `ng g @ngneat/transloco:migrate` I selected NgxTranslate and provided path to the app. All files process, however, `TranslateService` only changed in the...
Interact with slider. Then click "shift". Actual: `userChangeEnd` triggered Expected: no events triggered Demo: [Stackblitz](https://stackblitz.com/edit/ngx-slider-simple-slider-example-c5tuu6?file=src/app/app.component.ts)
Possible duplicate of #373. Console output: ``` Uncaught TypeError: Cannot set property config of [object Module] which has only a getter at MapService.assign (ngx-mapbox-gl.mjs:767:32) at Object.next (ngx-mapbox-gl.mjs:34:22) at ConsumerObserver.next (Subscriber.js:91:33)...
### Bug or feature description: Right-click does not close `ngbDropdown` with `[autoClose]=true`.  ```html Action 1 Action 2 Action 3 ``` I'm opening dropdown to imitate a context menu, but...

`geojson-flatten` uses old version of `minimist` what fails `npm audit`. ``` +-- @mapbox/[email protected] | +-- @mapbox/[email protected] | | `-- @mapbox/[email protected] | | `-- [email protected] | | `-- [email protected] | `--...
``` typescript private readonly _destroy$ = new Subject(); myLuckyNumber$ = this.service.getNumber().pipe(takeUntil(this._destroy$)); ngOnInit(): void { this.myLuckyNumber$.subscribe(); // Forbids calling `subscribe` without an accompanying `takeUntil` rxjs-angular/prefer-takeuntil const anotherNumber$ = this.service.getNumber().pipe(takeUntil(this._destroy$)); anotherNumber$.subscribe(); //...