Sergei Malchits

Results 5 comments of Sergei Malchits

Implemented it myself: https://github.com/downace/vuelidate/tree/invalid-null This is a breaking change, so I will not PR it without developers answer

> This only happens when more than one property of the objects contained in the array is validated. Seems like this is a bug, I can reproduce it. As a...

I've solved this issue in my project by adding new `bottom-left` slot: Patch ```patch Index: ui/src/components/table/QTable.js IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP UTF-8 =================================================================== diff --git a/ui/src/components/table/QTable.js b/ui/src/components/table/QTable.js --- a/ui/src/components/table/QTable.js (revision...

Btw, when using `visible: false` without `updateWhileAnimating: true`, it results in a weird behaviour when zooming: GIF ![2](https://github.com/user-attachments/assets/907a3cc3-ff95-4d42-a535-f4c43dfa6397)

I've encountered similar issue: ```php Assert::oneOf(BarEnum::A, [BarEnum::B, BarEnum::C]); // Expected one of: BarEnum, BarEnum. Got: BarEnum ``` Would be much better: ```php // Expected one of: BarEnum::B, BarEnum::C. Got: BarEnum::A...