Gilbert

Results 8 comments of Gilbert

I have the same issue with ViewTransitions in Astro v4.5 and react-select v5.8. Tried every other workaround I could find to make it hydrate properly, but was still having problems...

Having written that out, I now realise that the script has made the `data-astro-reload` attribute redundant 🤦‍♂️

I think it's because the ORDER BY clause in the wrapper appears to be optional. It's mandatory when you use `OFFSET...FETCH` in T-SQL. If I do `SELECT * FROM AS...

I think there's something wrong with this...at least I don't think I'm doing anything wrong? Using PostgreSQL 16, sql plugin 2.0.2. It's nothing complicated - literally just `await db?.select("SELECT *...

I forgot to add that I constructed my own totals row as part of the dataset, and columns 25-29 uses a SUM formula to sum rows above for each column....

Well, I've fixed my issue but it's kind of odd. I'm filtering my dataset so that it excludes a certain type of row. The values I filter by are also...

For anyone else with this issue, my workaround (in React) is using the Spreadsheet `oneditionend` event like so: ``` const handleEditCellEnd = (instance,cell,x,y,value) => { if (value === 0) {...

The exclusive interval edges tripped me up, and as of writing, I agree the docs are a little unclear: ``` For overlapping time intervals adds 1 for each started overlapping...