You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Open the project in a new tab so we can use vue-devtools (In the "Browser" section, beside the URL bar, there's an "Open in New Window" icon.)
Open vue-devtools > Vuex store1. Under getters, totalSleep should be 1.5
Go back to the source code. Open store.js and change line 63 to }, 1); (We want to change totalSleep from 1.5 to something else. In this case, to 2.5)
Save and let it compile.
Go back to the project tab. It should automatically reload. If not, reload the page.
In the page, "Total Sleep" displays 2.5 as expected.
What is expected?
totalSleep in vue-devtools should say 2.5 as it also appears in the page.
What is actually happening?
totalSleep in vue-devtools is still 1.5 although the page is updated to 2.5
Other Info
If I use vue-devtools' force refresh, nothing happens.
If I reload the page, nothing happens.
If I close the tab, open a new tab, load the project, open vue-devtools > Vuex store 1, totalSleep now says 2.5
This may be related to #930 but that one mentions NUXT and actions being committed. My prototype does neither of those things. I didn't want to highjack the ticket.
1 Sometimes vue-devtools says that "No Vuex store is detected." When this happens, I just reload the page without closing dev-tools and the Vuex store gets detected.
The text was updated successfully, but these errors were encountered:
Version
5.0.5
Browser and OS info
Chrome 73 / Mac OS 10.14.4
Steps to reproduce
}, 1);
(We want to change totalSleep from 1.5 to something else. In this case, to 2.5)What is expected?
totalSleep in vue-devtools should say 2.5 as it also appears in the page.
What is actually happening?
totalSleep in vue-devtools is still 1.5 although the page is updated to 2.5
Other Info
If I use vue-devtools' force refresh, nothing happens.
If I reload the page, nothing happens.
If I close the tab, open a new tab, load the project, open vue-devtools > Vuex store 1, totalSleep now says 2.5
This may be related to #930 but that one mentions NUXT and actions being committed. My prototype does neither of those things. I didn't want to highjack the ticket.
This might also be related to #935.
1 Sometimes vue-devtools says that "No Vuex store is detected." When this happens, I just reload the page without closing dev-tools and the Vuex store gets detected.
The text was updated successfully, but these errors were encountered: