Skip to content

Commit

Permalink
fix: SQ conversion query object incorrect
Browse files Browse the repository at this point in the history
# Problems
- Missing index for array
  • Loading branch information
Chinlinlee committed Aug 1, 2023
1 parent 7d2d9ed commit cd1a2ac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ function convertAllQueryToDICOMTag(iParam) {
if (dictionary.keyword[keyNameSplit[x]]) {
newKeyNames.push(dictionary.keyword[keyNameSplit[x]]);
} else if (dictionary.tag[keyNameSplit[x]]) {
newKeyNames.push(keyNameSplit);
newKeyNames.push(keyNameSplit[x]);
}
}
if (newKeyNames.length === 0) {
Expand Down

0 comments on commit cd1a2ac

Please sign in to comment.