I have a web app that uses LocalStorage. While debugging, I often rely on Chrome's Dev Tools to review data in LocalStorage. Recently, the LocalStorage panel started presenting nothing; however, if I use the console to log a key's value I can see that storage does indeed have data. Why would Chrome not present data in local storage?
Asked
Active
Viewed 1,539 times
4
-
Are you taking into account the asynchronous nature of accessing `localStorage`? – Pytth Mar 22 '17 at 22:04
-
1LocalStorage is synchronous. Konrad found a bug about the issue. – Mar 23 '17 at 18:27
1 Answers
3
This is a known bug in DevTools. Feel free to star the report to get informed about the progress and increase its priority.

Konrad Dzwinel
- 36,825
- 12
- 98
- 105
-
1Hey thanks. I called myself looking for a bug about it before posting, but obviously looked with the wrong terms. – Mar 23 '17 at 18:26
-
-