Adrian Hesketh

Results 366 comments of Adrian Hesketh

Thanks for picking this up! I haven't had chance to look through because I was focusing on the last release. I feel like I've gotten back on top of most...

I haven't had time to fully digest this, but it is possible to update the context from within a templ component, if the value is already available in the context...

Ah, for some reason, I didn't think to test SQLite directly. Sorry to waste your time on the investigation. My expectation was that I'd get the vector back, but I...

Thanks, my main concern was my ability to test whether the data had landed in the database correctly, i.e. that there weren't any problems with encoding etc. I was able...

Is there a workaround for this until the PR is merged?

I wasn't sure how to do that. I can't see an NPM package for it, and wasn't sure how `npm.lock` files etc. would work. I was hoping there would be...

Thanks for your help. Adding a resolve section to my `vite.config.ts` also seemed to work: ```ts resolve: { alias: { 'frappe-gantt': 'node_modules/frappe-gantt/dist/frappe-gantt.es.js', }, }, ``` With this in place, I...

I would probably prefer to fix windows issues in the PR if possible. I'll take a look at what the issues are when I get chance.

Hi, just looking into this. Wouldn't you also want to put a mutex around the `io.Writer` that you're writing to, in order to avoid the danger of multiple components rendering...

So, the objective is to render various sections to sub-buffers, then to render them out in the expected sequence. I can see how that could, in some cases, improve the...