feat(editor): Add isEmpty on DateTime, add is empty to all types in filter component (#9645)

This commit is contained in:
Elias Meire
2024-06-07 13:25:22 +02:00
committed by GitHub
parent 44ecab73d7
commit eccc637b63
7 changed files with 206 additions and 4 deletions

View File

@@ -352,7 +352,7 @@ compact.doc = {
isEmpty.doc = {
name: 'isEmpty',
description: 'Returns <code>true</code> if the array has no elements',
description: 'Returns <code>true</code> if the array has no elements or is <code>null</code>',
examples: [
{ example: '[].isEmpty()', evaluated: 'true' },
{ example: "['quick', 'brown', 'fox'].isEmpty()", evaluated: 'false' },