Skip to content

Commit

Permalink
fix: Fix undefined error in escape-number-filter.service.ts (#3438)
Browse files Browse the repository at this point in the history
* fix: Fix undefined error in escape-number-filter.service.ts

* fix: Fix undefined error in escape-number-filter.service.ts
  • Loading branch information
tenthe authored Jan 27, 2025
1 parent 1605f6b commit 9f31d8c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ export class EscapeNumberFilterService {
tagValues: Map<string, string[]>,
): boolean {
return (
tagValues.has(filter?.field?.runtimeName) &&
tagValues.get(filter.field.runtimeName)?.length > 0
tagValues?.has(filter?.field?.runtimeName) &&
tagValues?.get(filter.field.runtimeName)?.length > 0
);
}

Expand Down

0 comments on commit 9f31d8c

Please sign in to comment.