Vlad Kasianenko

Results 16 issues of Vlad Kasianenko

There's no way to save the output from the `show` command. ![image](https://user-images.githubusercontent.com/14053728/123813926-f4c7ea80-d8fd-11eb-88f2-65721bfd6662.png) `terraform show -json > $(Build.ArtifactStagingDirectory)/tfstate.json` is what I run as a bash command instead. I guess it would...

terraform-cli-task
feature request

``` html ``` Output: ![image](https://user-images.githubusercontent.com/14053728/177510988-3c526598-4265-434b-894d-29d8f15480f2.png) 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...

enhancement
PRs welcome

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`. ![image](https://github.com/ng-bootstrap/ng-bootstrap/assets/14053728/469dce39-61ee-4c69-b15d-099936f8ed37) ```html Action 1 Action 2 Action 3 ``` I'm opening dropdown to imitate a context menu, but...

component: dropdown
type: feature
service: autoclose

![image](https://github.com/supercharge/mongodb-github-action/assets/14053728/693fe4fb-ba46-40cc-8acd-d7fa861e8b1a)

`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(); //...