Ryan Mortier

Results 37 comments of Ryan Mortier

I've managed to make some very minor changes and get things working temporarily. The issue appears to be related to the pro components or the `syncFromMediaLibraryRequest` method. In my Livewire...

> The solution you came to @ryanmortier seems to be just not using the pro components? Yeah pretty much. I'm hoping to one day add them back in but there...

I setup the demo app and was unsuccessful at replicating the issue. The demo app seems to work fine which is weird because my implementation is very basic/default so I...

Maybe WSL2 is the common denominator? I was also using WSL2.

I just bought a MacBook. If I have time this weekend, I'll try to see if I can isolate the issue to WSL2 in my case.

This works great for me: ```css button[chapter-toggle] { display: none !important; } .inset-list { display: block !important; } ```

It's not just when quickly hovering either, if you slowly hover it breaks too. Example: https://codepen.io/ryanmortier/pen/qBKVpra?editors=1010 ![bootstrap tooltip glitch](https://user-images.githubusercontent.com/2053960/202726518-3cb713cb-55fd-43b8-bf26-6cf6073c0b02.gif)

Same problem here, 3 years later.

I don't think this is working? I tried your fork today and this is the SQL that was generated: ```sql SELECT CONVERT(VARCHAR, created_at, 23) AS date, count(*) AS aggregate FROM...

Working now, thanks! ```sql SELECT CONVERT(VARCHAR, created_at, 23) AS date, count(*) AS aggregate FROM [crm].[tickets] WHERE [created_at] BETWEEN '2024-03-12 12:29:28.806' AND '2024-03-19 12:29:28.806' GROUP BY CONVERT(VARCHAR, created_at, 23) ORDER BY...