Skip to content

Commit b03e5ce

Browse files
authored
Merge pull request #272 from terminusdb/fix-m
fix column type LIST
2 parents 46f182a + 6cc5fc1 commit b03e5ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/tdb-documents-ui-template/src/hook/hookUtility.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export function extractDocuments(documentResultsArr) {
2323
// if it is an array this is set type, I can have more than 1 result for row
2424
//?? I can pust the count
2525
if (Array.isArray(item[key])) {
26-
newJson[key] = `${(item[key].length)}`
26+
newJson[key] = `Item Count ${(item[key].length)}`
2727
}
2828
else if (item[key] && typeof item[key] === "object") {
2929
//key

0 commit comments

Comments
 (0)