Teodor Atroshenko
Teodor Atroshenko
 This is the portion of regex where matching fails. And a couple more cases that it skips. The culprit - `\b`. It expects word boundary at the end of...
Oh, and the current workaround I am using is: ```ts declare module '@vue/runtime-core' { interface ComponentCustomProperties { XXX: boolean } } ``` But obviously that's not good, as if I...
The most minimal intervention is like this: In `MysqlDriver.ts` ```javascript } else if (columnMetadata.type === "datetime") { value = ( this.options.dateStrings === true || ( Array.isArray(this.options.dateStrings) && this.options.dateStrings.indexOf('DATETIME') !== -1...
Still an issue with latest everything. Anybody managed to get it to work? **Atom**: 1.38.2 x64 **Electron**: 2.0.18 **OS**: Microsoft Windows 10 Home **Thrown From**: [atom-autocomplete-php](https://github.com/Peekmo/atom-autocomplete-php) package 0.25.6
There is an Apple's bug tracker issue here, which you can comment on: https://bugs.webkit.org/show_bug.cgi?id=236937 This has been a thing since Safari was released, but nobody from Apple has claimed it...
I have a workaround. This also addresses the autocorrect suggestions being joined together in WKWebView. ```html ``` ```css .flick-target { display: block; width: 0; height: 0; opacity: 0; border: 0;...
As is typical with Apple, this was broken in even more ways than originally reported. When you focus into a field, type nothing, then press backspace (in an empty field)...
I made it work with `vite` using this strategy: 1. I copied the `core` file into the project folder and imported it as URL. This meant that the file would...
I found an edge case where it still triggers re-rendering. So this requires a little more work.
It turns out that Vue behaves slightly differently in dev and prod modes. It seems the effect isolation is more strict in dev and so it was not triggering the...