jackalvrus
jackalvrus
I've encountered this when calling `System.IO.File.ReadAllText` from within my code under test.
> UAC prompts were removed by user request in v1.1.8. Community feedback since then has shown a strong demand for it (i.e. nobody spoke up until it was too late),...
Our use case for this is Serilog's `PushProperty` method. It would be nice if we could write something like: ``` using _ = LogContext.PushProperty("a", a); using _ = LogContext.PushProperty("b", b);...
My $0.02 on the syntax: to me it would make more sense as `using _ = `. This seems like it would be more consistent with the current discard behavior....
We need this because we have cases where some tabs are hidden with *ngIf, so the index is not reliable.
A couple comments about this: 1. This is one of the main features of UI-Router that I miss since we moved to the Angular router. 2. I don't believe it...
For the lazy people like me, who are looking for a quick link to the forked repo, here ya go: https://github.com/ngbracket/ngx-layout @DuncanFaulkner Thanks for doing this.
As far as I can tell, the problem has nothing to do with itemSize. I created a repro based on the custom data source example, which uses a fixed itemSize:...
I have verified that using `cdkVirtualForTrackBy` does not resolve this issue. The only workaround I've found so far is to recreate the viewport when the data source changes: https://stackblitz.com/edit/angular-jqnvlc-9ndymf?file=src%2Fapp%2Fcdk-virtual-scroll-data-source-example.html
Found a better workaround. Expose a method from the data source that handles range changes (i.e., that handles the subscription to `viewChange`). Manually call that method with `getRenderedRange` from the...