sierpinski / Blitz

This repository contains a VSTS extension for showing a list of all active pull requests for a project. This allows users to review open pull requests and click the link to go work the pull request.
https://marketplace.visualstudio.com/items?itemName=sierpinski.blitz-allpulls-extension
Other
24 stars 16 forks source link

Remove localStorage and use Data Storage instead #35

Closed karlingen closed 5 years ago

karlingen commented 5 years ago

I noticed that there are some issues for some installations where localStorage is not working. So I swapped out localStorage with the recommended way of storing data: https://docs.microsoft.com/en-us/azure/devops/extend/develop/data-storage?view=azure-devops

Now the state of the multiselect will be saved regardless what instance of Devops you are running.

I also made the code more thread safe.

@sierpinski