Patrick Rice

Results 10 comments of Patrick Rice

If you aren't using dynamic store registration, where would that store reference come from?

I'm not super familiar with the implementation of plugins, but is it possible to either run that command on install, or just include it in the README?

Was this issue resolved? I am experiencing this too Win 10 using Clion

I don't think the icon should have the pinia icon since there are non-pinia use cases for the store naming. ex: https://github.com/PKief/vscode-material-icon-theme/issues/1937

Oh interesting, I hadn't considered that. Is there a reason the async classes aren't exported in the main barrel export? https://github.com/opensearch-project/opensearch-py/blob/main/opensearchpy/__init__.py It seems like most of them are prefixed with...

Just verified that yes naming a module `async` will not work: ```console Traceback (most recent call last): File "", line 189, in _run_module_as_main File "", line 112, in _get_module_details File...

The following resolves the issue ```console diff --git a/vue/vite.config.ts b/vue/vite.config.ts index 0e5d497..6fe996c 100644 --- a/vue/vite.config.ts +++ b/vue/vite.config.ts @@ -11,5 +11,6 @@ export default defineConfig({ alias: { '@': fileURLToPath(new URL('./src', import.meta.url)),...

Unfortunately this did not solve the problem on my project.

>fix access of actions with {root: true} What is the implication of this? Does it fix the "ERR_ACTION_ACCESS_UNDEFINED" errors? >Error: ERR_ACTION_ACCESS_UNDEFINED: Are you trying to access this.someMutation() or this.someGetter inside...