Michael Tromba
Michael Tromba
Hey Neek, I'm not very familiar with working with PR's, but I'll assume I can just push another commit to this PR without creating a new one... going to give...
Hey, I should have included more context. I've abstracted a lot into a separate class "MonacoTextmateManager" for my project; I'll share it here. The basic structure is: `MonacoTextmateEditor.vue` is a...
PR Submitted: https://github.com/NeekSandhu/monaco-editor-textmate/pull/16 *The change might be breaking for dependents using monaco-editor
It appears that that function does not accept filters similar to what a .match() would let you do... That being said, I think it's fair to assume that the primary...
Just experienced the same issue and it caused my server to crash. I believe it happened as a result of calling: ```js const { user, error } = await supabase.auth.api.getUser(token)...
Here's a small plugin that provides basic tracking functions of gtag.js with GA4 properties- without needing any 3rd party libraries. The heavy lifting is done by GA4's default auto-tracking behavior....
@nomtek-sgolus That might be because it's trying to run on the server side (if you're using SSR) - I have my file named `gtag.client.js` - [this tells Nuxt 3 to...
@notflip The $gtag property is just a normal gtag.js object, so you can see all of the possibilities in Google's official docs: Gtag.js - https://developers.google.com/tag-platform/gtagjs Gtag event tracking - https://developers.google.com/tag-platform/devguides/events
`withCursorPagination` returns an object of this type: ```js { orderBy: SQL[] limit: number where?: SQL } ``` So, try something like this: ```ts const { orderBy, limit, where } =...
Hmm, could you provide the code for the query you are making?