Skip to content

Commit 917ce09

Browse files
author
anmarhindi
committed
Merge remote-tracking branch 'origin/release-updates' into release-updates
2 parents dcd246e + 562ac20 commit 917ce09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/components/projects/projectId/data-browser/search-parameters.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function createSplittedText(i, searchGroup, p) {
6969
function updateSearchParamText(searchElement, attributes, separator, drillDownVal) {
7070
const searchElementCopy = jsonCopy(searchElement);
7171
if (searchElementCopy.group == SearchGroup.ATTRIBUTES) {
72-
const attributeType = getAttributeType(attributes, searchElementCopy.name);
72+
const attributeType = attributes.find(att => att.name == searchElementCopy.name)?.dataType;
7373
if (searchElementCopy.operator == SearchOperator.BETWEEN) {
7474
if (attributeType == "INTEGER" || attributeType == "FLOAT") {
7575
searchElementCopy.searchText =

0 commit comments

Comments
 (0)