Skip to content

Commit a3b8651

Browse files
committed
fix: join
1 parent 171743d commit a3b8651

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/utils/stac.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ export const renderItemColumn = (item, _, column) => {
683683
if (Array.isArray(fieldContent)) {
684684
fieldContent = fieldContent.join(", ");
685685
} else if (isObject(fieldContent)) {
686-
<Revealer>{", ".join(Object.keys(fieldContent))}</Revealer>;
686+
<Revealer>{Object.keys(fieldContent).join(", ")}</Revealer>;
687687
}
688688
return stacFormatter.format(fieldContent, column.fieldName);
689689
}

0 commit comments

Comments
 (0)