Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: handled status filtering #106

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

hiteshbedre
Copy link

Fixes: #105

@hiteshbedre
Copy link
Author

If property object has anything which leads to know whether match to be performed via strict regex (adding ^ and $) or simple regex will help to remove the hard coded match over field status.

@@ -15,8 +15,13 @@ export const convertFilter = (filter) => {
const { property, value } = filterProperty
switch (property.type()) {
case 'string':
let regexPattern = '';
if (property.name() === 'status')
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This won't do, the only way I see it works is if you somehow check whether the property is enum/has availableValues

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dziraf Can you share me a reference? It would be very helpful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

List action returns both records with status Active and Inactive when search only for Active
2 participants