We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5e0579 commit d0ce8caCopy full SHA for d0ce8ca
packages/app-backend-vue2/src/plugin.ts
@@ -346,7 +346,7 @@ function extractNameFromPath (path: string) {
346
}
347
348
function formatStoreForInspectorState (module, getters, path): CustomInspectorState {
349
- getters = path === 'root' ? getters : getters[path]
+ getters = !module.namespaced || path === 'root' ? module.context.getters : getters[path]
350
const gettersKeys = Object.keys(getters)
351
const storeState: CustomInspectorState = {
352
state: Object.keys(module.state).map((key) => ({
0 commit comments