Skip to content

Commit 562ac20

Browse files
Remove single quotation marks
1 parent e5c2bb1 commit 562ac20

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)