Skip to content

Commit 85df2c8

Browse files
committed
fix: fix creation failure when using creator filter
Signed-off-by: ailkiv <a.ilkiv.ye@gmail.com>
1 parent 145281b commit 85df2c8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lib/Service/RowService.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,11 @@ private function enhanceWithViewDefaults(?View $view, RowDataInput $data): RowDa
261261
continue;
262262
}
263263

264+
// For meta columns, we don't need to add them to the data since they are handled separately
265+
if (Column::isValidMetaTypeId($filter['columnId'])) {
266+
continue;
267+
}
268+
264269
// Only handle simple equality filters for now
265270
if (!in_array($filter['operator'], ['is-equal'])) {
266271
continue;

0 commit comments

Comments
 (0)