Skip to content

Commit 907c777

Browse files
committed
Corrected a wrong comment - no code changes
1 parent 81e88ea commit 907c777

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/src/components/ListResultTable/QueryResultList/QueryResultList.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ function strip(obj, level = 0) {
150150
if (level === 0 && k === 'id') {
151151
// skip id at top level
152152
} else if (level === 1 && k === 'datatype' && v && typeof v === 'object') {
153-
// remove x.datatype.termType; promote x.datatype.value to x.datatype
153+
// remove x.datatype.termType
154154
const { termType, ...rest } = v;
155155
result[k] = strip(rest, level + 1);
156156
} else {

0 commit comments

Comments
 (0)