Results 9 comments of Radek Novacek

I should have said that you need to set `python.analysis.typeCheckingMode` to `basic` in VSCode settings in order to see the error.

I had the same issue, manage to work it around by removing `trigger` from the step definition and instead called `triggerNextStep({ trigger: 'NEXT_STEP' });` from the custom component.

Something like this: ``` const CustomStep = ({ triggerNextStep }) => { return ( triggerNextStep({ trigger: '2' })}>Next ); };

This change (credits to @nattster) fixes very similar issue (with Concat and GROUP BY) for me: https://github.com/michiya/django-pyodbc-azure/compare/azure-2.0...rnovacek:fix-concat-group-by-new I didn't test it thoroughly yet, but our app doesn't show any problems...

Log from trying to open that file in Blender with CAD Sketcher debug on: [log.txt](https://github.com/hlorus/CAD_Sketcher/files/10833470/log.txt)

Not too complicated ![Screenshot_20230226_104750](https://user-images.githubusercontent.com/618886/223075197-dd3bfa11-7f1a-4b0c-8553-99ad8740cd51.png) (The box in the center of that screenshot should go inside the outer box, but that's where it started misbehaving and I couldn't finish it). I've...

Is there any workaround for this? I have a link and I want to prevent the navigation and handle that in the component. But still want the link to be...

Ok, this seems to work: ``` on:click={(e: Event): boolean => { e.preventDefault(); e.stopPropagation(); setIsEditing((editing) => !editing); return false; }} ``` But typescript doesn't like it: ``` Type '{ children: Element;...

My impression is that the 'stats' command should return info only about local collection. It doesn't make sense to ask for this information for streaming services like Spotify. For me,...