Form is to complex, needed a rewrite before I try to use it #1

Merged
warkanum merged 4 commits from rw into main 2026-01-12 21:21:59 +00:00
Showing only changes of commit fbb65afc94 - Show all commits

View File

@@ -77,11 +77,12 @@ function _GlidlerAPIAdaptorForGoLangv2<T = unknown>(props: GlidlerAPIAdaptorForG
!f.disableFilter &&
!f.disableSearch &&
!f.virtual &&
f.id &&
((searchFields ?? []).length == 0 || searchFields?.includes(f.id))
)
?.forEach((filter: any) => {
ops.push({
name: `${filter.id}`,
name: `${filter.id ?? ""}`,
op: 'contains',
type: 'searchor',
value: searchStr,