Clint Pearson

Results 19 comments of Clint Pearson

@XamlFlair Unfortunately not, however I've (for now) decided to not use the animated list controls, and instead go with an ItemsControl and just have a primary animation on each item...

Sadly not, `AnimatedListView` and `AnimatedListBox` both exhibit the behaviour of only animating the first element to be added. I didn't test whether adding a bunch of items at the same...

@XamlFlair thanks for the suggestion! If I pick those controls up again I'll be sure to give it a go. My guess is something is off about it determining whether...

Bit of digging led to [BaseGitHubSubOptions.cs](https://github.com/GitTools/GitReleaseManager/blob/34e531ade4fac11b234e8c1b7109d45afa404077/Source/GitReleaseManager.Cli/Options/BaseGitHubSubOptions.cs) where: ``` csharp public GitHubClient CreateGitHubClient() { var credentials = new Credentials(this.UserName, this.Password); var github = new GitHubClient(new ProductHeaderValue("GitReleaseManager")) { Credentials = credentials };...

@gep13 sure, I'll get something together for you!

So I've run into a similar issue using the route params in react-router, and the issue ultimately seems to be that the hook is obviously always called, and because of...

Aye, the way I got around it at least for now is that I wrote a facade replicating the existing azure `BlobContainerClient` and `BlobClient` classes from the Azure storage SDK....

@robinrodricks I suppose it could be possible, but I'm wary of adding something that then re-replicates the specific structure used by the Azure SDK, plus it's not complete so is...

I've run into this too, it appears that the sidebar puts everything in a wrapper div that you have no control over the classname / styling for (without dropping into...

@ataibarkai I mean not wrapping children with it, so: ```tsx ``` Instead of: ```tsx ``` We've actually just gone with using the popup instead. I know there's a headless variant...