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 68cd612 commit e6b2f05Copy full SHA for e6b2f05
packages/api/src/proxy.ts
@@ -36,7 +36,7 @@ export class ApiProxy<TTarget extends DevtoolsPluginApi<any> = DevtoolsPluginApi
36
}
37
38
const localSettingsSaveId = `__vue-devtools-plugin-settings__${plugin.id}`
39
- let currentSettings = { ...defaultSettings }
+ let currentSettings = Object.assign({}, defaultSettings)
40
try {
41
const raw = localStorage.getItem(localSettingsSaveId)
42
const data = JSON.parse(raw)
0 commit comments