icyerasor

Results 14 comments of icyerasor

So make sure to use `quay.io/coreos/clair:latest` instead of `clair-git` when starting up clair through docker.

I'm in favor of this. Scripting becomes redundant if you have to provide the app name of the app you just pushed with `push -p jarFile.jar -f manifest.yml` getting the...

We face the same problem as @athisun here, after updating from ngb 9.0.1 to 11.0.0 (and angular 11 to 13). We used something similar to this https://github.com/ng-bootstrap/ng-bootstrap/issues/4055#issuecomment-816422763 and it broke...

So I decided to dig a bit deeper and (at least in my case) the issue seems not necessarily to be with ngb, but with angular constantly detecting changes for...

@maxokorokov - can you maybe give some input on why we'd be interested in changes to the ngbTypeahead-function that's bound? As a workaround I'm now using a patch file to...

@Totati - `.bind(this)` was only the initial cause of the issue. Its broken for arrow function as well right now. Reproducer: https://stackblitz.com/edit/angular-rfep3g?file=src/app/typeahead-config.ts

Yes - I showed that would be a workaround in the searchParameterizedRebound case. My argument is that switching out the function is a lesser used usecase as parameterizing it is....

Okay, can see your stackblitz now. Maybe the "dynamic" part was confusing - changed it meanwhile. Parameterized is more what this thread really is about and what i tried to...

The proposed workaround is to use a pure pipe. It's really suuuuper easy: 1. create the pure pipe ``` import { Pipe, PipeTransform } from '@angular/core'; @Pipe({ name: 'applyPure', pure:...

@mebibou - https://stackoverflow.com/questions/36816788/how-do-i-call-an-angular-2-pipe-with-multiple-arguments maybe and also add the params in the `typeaheadFunction:` declaration? The pure-pipe should be ready for multiple args. Not sure though.