increase incremental detecting logic (#4280)
This commit is contained in:
@@ -2482,7 +2482,8 @@ function isClassNameIncludesHidden(className) {
|
||||
// some hidden elements are with the classname like `class="select-items select-hide"` or `class="dropdown-container dropdown-invisible"`
|
||||
return (
|
||||
className.toLowerCase().includes("hide") ||
|
||||
className.toLowerCase().includes("invisible")
|
||||
className.toLowerCase().includes("invisible") ||
|
||||
className.toLowerCase().includes("closed")
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user