Ruslan Stelmachenko
Ruslan Stelmachenko
@j2L4e Interesting idea, actually! I think both headers/cookies are just JS arrays? In this case cloning/restoring them should not cause any troubles. And, of course, I agree, @phoenix-ru, thank you...
Wouldn't `TypedRef` better than `TypeRef` considering the reason of this type to exist? I see it is exported, so, the name becomes part of the public API, right?
Also: is it really necessary to export the intermediate type? Would it work without an `export`? All exported types become a part of public API, so the less exported types...
Hello @IvanGorshechnikov I was afraid of this answer. :) Yes, I'm aware of "Double click on node" setting, but is not a viable solution because it works globally - for...
@ShadelessFox > little to nothing we can do about it Can't we at least create a bug in the Ecplise project and link this and the other issue to it?...
@ShadelessFox Another idea is to add additional option to the Preferences for single click action. Like we see on [the screenshot above](https://github.com/dbeaver/dbeaver/issues/37300#issuecomment-2687752084). Behaviour: * Double-click on node. * Double-click on...
I totally agree. This is very strange decision to "randomly" change base `rem` size to `14px` from the default `16px`. I understand that this is not a problem if you...
A related commit, that fixed the same problem for `compilerOptions.baseUrl`: 2b54ffa1c47ac38d78265a23a73c3f6362b471ec. The relevant part is https://github.com/dividab/tsconfig-paths/commit/2b54ffa1c47ac38d78265a23a73c3f6362b471ec#diff-4269c82cfe6700a0f2edfef2b8f8a348b4b8f7c06f40071b294a4a138d9e6d63R121-R131 and the comment is: > baseUrl should be interpreted as relative to the base...
Another problem with type inference is when we use `defineField` with a second argument as a function and that function is not written inline, but extracted to a `const` or...
@markpollack The [Jackson Module](https://victools.github.io/jsonschema-generator/#jackson-module) from SchemaGenerator allows to do this out of the box: > 7. Optionally: treat enum types as plain strings as per the `@JsonValue` annotated method, if...