Kai Schlamp
Kai Schlamp
> I think `yaml-language-server` simply doesn’t do validation if the document is empty. I think this is indended behaviour. This decision isn’t made by `monaco-yaml`. @remcohaszing I wonder if this...
I absolutely agree that this would be very useful, especially for computed properties. Authors.helpers({ get fullName() { return `${this.firstName} ${this.lastName}`; } }); `author.fullName` would now work like `author.firstName`, as it...
Mantine v5 currently uses @emotion/react version 11.9.3. As DevTools is often used with other component UI libraries (and Emotion is a very common style library) wouldn't it make sense to...
Yes, I will ignore it. But there are also some discussions in the Emotion repo itself if `@emotion/react` is better added as a peer dependency. https://github.com/emotion-js/emotion/issues/2343#issuecomment-817265816 https://github.com/emotion-js/emotion/discussions/2795#discussioncomment-3031404 Even Mantine seems...
Sure, it is as easy as moving the dependency line to peer dependencies. As version restriction, I would use `"@emotion/react": ">=11.0.0"`. I will open a PR.
Sure, I will investigate what's wrong here. Sorry for the trouble.
> this caused issue: https://codesandbox.io/s/react-hook-form-get-started-ts-forked-o1ebc5?file=/src/index.tsx Will revert that commit for now. I took another look into this. This import is a bit strange: `import { DevTool } from "./src";`. Shouldn't...
> never mind, it's already released, I didn't revert your original commit. could you verify it's working? It seems reverted as `@emotion/react` is still a [direct dependency](https://github.com/react-hook-form/devtools/blob/1b1cdf9e860ea7822fde21882fcb51d79e250af9/package.json#L61) in master branch...
I also can confirm this. The issue is resolved by commenting out the `LoggingPanel`. DEBUG_TOOLBAR_PANELS = [ "debug_toolbar.panels.versions.VersionsPanel", "debug_toolbar.panels.timer.TimerPanel", "debug_toolbar.panels.settings.SettingsPanel", "debug_toolbar.panels.headers.HeadersPanel", "debug_toolbar.panels.request.RequestPanel", "debug_toolbar.panels.sql.SQLPanel", "debug_toolbar.panels.staticfiles.StaticFilesPanel", "debug_toolbar.panels.templates.TemplatesPanel", "debug_toolbar.panels.cache.CachePanel", "debug_toolbar.panels.signals.SignalsPanel", # Does not...
And another use case: I query the Github GraphQL API for commits of several repositories. Sometimes I get a sporadic 502 response because of a [maximum query time](https://github.community/t/persistent-502-when-querying/14374/4). Simple retries...