Carlo Taleon

Results 63 comments of Carlo Taleon

> I encountered this problem and spent a long time trying to figure out what causes it. I can't name the reason, but the solution for me was to specify...

Managed to figure it out + also kind of a scrub at this stuff, so I'll write a **quick little guide** for myself and others here, since It kinda worked...

@yangbentw This is great, I stumbled upon this issue on a whim, but yep I agree, it should be in the VivalArc config. It's a great nice-to-have.

I'm using 0.3.11. For my case, this doesn't happen when I set the "options", But the problem at the moment, is that `onChange` seems to get called **after Select mounts**?...

I'm guessing it's just missing this: (I just renamed what I have in DropdownMenuLabel) since they are pretty much the same... ```tsx const ContextMenuLabel: Component = (props) => { const...

@brillout Usually in other metaframeworks there's two ways to navigate: - Link (In the Markup) - Programmatically using a similar `navigate` API with Vike. By default, the other metaframeworks work...

@brillout Just tested here, yup they do scroll to the top by default even for nested layouts. Repro: https://github.com/Blankeos/nested-layouts-scroll-example https://github.com/vikejs/vike/assets/38070918/02769da3-14af-434e-b4d3-9b893dfe9f30 Also tested "no scroll" while I'm at it: https://github.com/vikejs/vike/assets/38070918/7bbfdeb2-5ab5-4827-b22a-766b22ed09c9

> So, the only way we can do this is to pass it as generics for OpenAPIHono. > ```ts > const app = new OpenAPIHono() > ``` I kinda get...

Ahh true. Thanks @askorupskyy Yeah I settled on a trpc-like procedure instead: ```ts export const h = { get public() { return new OpenApiHono() }, get private() { const app...

@batnieluyo I assume I apply this `block` style on the **item**, right? I tried removing all `flex` and just using `block` for the **parent** and **item** and pretty much everything...