Skip to content

Commit 6cc5fc1

Browse files
committed
fix columns
1 parent 31b0e6e commit 6cc5fc1

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)