Skip to content

Commit

Permalink
feat: Consider more constrainsts for presentation #2882
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Sep 16, 2024
1 parent fe80a64 commit 6913d9a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ List<CredentialModel> getCredentialsFromFilterList({

if (field.filter == null) {
//ascs case
return false;

This comment has been minimized.

Copy link
@bibash28

bibash28 Sep 16, 2024

Author Collaborator

by mistake

return true;
} else if (field.filter?.pattern != null) {
pattern = field.filter!.pattern;
} else if (field.filter?.contains?.containsConst != null) {
Expand Down Expand Up @@ -62,6 +62,8 @@ List<CredentialModel> getCredentialsFromFilterList({
/// a valid candidate
if (searchList.isNotEmpty) {
selectedCredential.add(credential);
} else {
break;
}
}
}
Expand Down

0 comments on commit 6913d9a

Please sign in to comment.