Jeffrey Pohlmeyer

Results 11 comments of Jeffrey Pohlmeyer

> I have met the same issue when i use `router.Use(cors.Default())` . > > And I solved it by: > > ```go > func CORS() gin.HandlerFunc { > return func(c...

You're running on Windows since the activate is in scripts. So run the following in 3 separate commands: python -m venv env env/Scripts/activate pip install -r requirements.txt Then you should...

> From a UX point of view, wouldn't it be preferable for tooltips to just not be rendered if a condition for their content isn't met? Here's a situation. I'm...

@MellKam in that very simple situation, yes, but we have places in our app where the tooltip needs to show up on, for example, a dialog trigger or a dropdownmenu...

I must not have made my point clear. The text that shows up in the dialog/dropdownmenu trigger may or may _not_ need to be truncated. The trigger itself may be...

I'm using [Shadcn-Vue](https://www.shadcn-vue.com/) so it's not a one-to-one, but this is the situation I'm working with: ``` {{ truncateText(X, 36) }} {{ X }} ... ``` with ``` function truncateText(value:...

Yeah, almost as soon as I wrote that I thought that I could just create the component myself and add a `disabled` prop and conditionally render in the manner you...

Thanks for the reply @zernonia. Unfortunately, that doesn't seem to work in the stackblitz. I'm seeing something similar with the dialog component, but I'm noticing there in Radix-Vue you're using...

Unfortunately no. I tried implementing the methodology I noted but it doesn't solve the bug. I'll try to create a new stackblitz, soon.