Skip to content

Commit

Permalink
avniproject/avni-etl#96 | Search by Text concepts
Browse files Browse the repository at this point in the history
  • Loading branch information
1t5j0y committed Apr 12, 2024
1 parent 68719d3 commit e6be3e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/components/ImageList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ export default function ImageList() {
if (data && data.length > 0) {
setNoteConcept([{
"conceptUuid": selectedFieldConcept.uuid,
"values": [data]
"values": data.split(" ")
}])
}

Expand All @@ -499,7 +499,7 @@ export default function ImageList() {
if (data && data.length > 0) {
setTextConcept([{
"conceptUuid": selectedFieldConcept.uuid,
"values": [data]
"values": data.split(" ")
}])
}

Expand Down

0 comments on commit e6be3e9

Please sign in to comment.