Robert "Red" English

Results 11 comments of Robert "Red" English

I'm having the same issue, also going from from 3.8.2 to 3.9 via `nuxi upgrade` and now HMR fails. The console running `npm run dev` shows `hmr update: /pages/.../index.vue`, and...

I've managed to narrow my issue down to calling ```ts import VueApexCharts from 'vue3-apexcharts'; nuxt.vueApp.component('apexchart', VueApexCharts); ``` in `plugins/plugin.client.ts` Why? dunno. Why only in 3.9? also dunno. It appears to...

So much as having the page render with this as a component on it is enough to break HMR for the entire SPA until you hard-refresh on a page that...

@mitjans I found that if I didn't rely on VueApexChart's built in .install method, it worked with HMR updates! Just import `import VueApexCharts from 'vue3-apexcharts/src/vue3-apexcharts';` and it worked as expected...

I have actually used full-screen and it does not completely work either; A command I commonly use for example would be WIN+SHIFT+LEFT ARROW to shift a window to the left,...

A simple button to swap monitors while in an active rainway session would be great for me, perhaps in the side menu?

Yes, absolutely. I ended up just dealing with it myself / work around it by looping over the results of a different call, and `await inv.populate()`'ing each folder in a...

One of the really ideal scenarios for me was figuring out what items were "New" within the inventory. I wanted to hold a copy of top-level inventory in memory, and...

The initial use-case where it returns `[]` I can't get to happen anymore, I'm not 100% sure how I did it.... But I do still have a case where the...

Actually I've replicated it, sorry it took me a minute; Just do this; ```javascript const inv = bot.clientCommands.inventory.getInventoryRoot(); await inv.populate(); console.log('folders', inv.folders.map((folder) => folder.name)); ``` If `inv.populate()` isn't `false` the...