Merge pull request #71 from Kingsrook/feature/CE-1646-possible-value-filter-bug

Feature/ce 1646 possible value filter bug
This commit is contained in:
2024-09-04 16:17:25 -05:00
committed by GitHub
7 changed files with 13 additions and 6 deletions

View File

@ -377,6 +377,7 @@ function FilterCriteriaRowValues({operatorOption, criteria, field, table, valueC
inForm={false}
onChange={(value: any) => valueChangeHandler(null, 0, value)}
variant="standard"
useCase="filter"
/>
</Box>
)
@ -412,6 +413,7 @@ function FilterCriteriaRowValues({operatorOption, criteria, field, table, valueC
inForm={false}
onChange={(value: any) => valueChangeHandler(null, "all", value)}
variant="standard"
useCase="filter"
/>
</Box>;
}