Skip to content

Commit c013a61

Browse files
committed
fix: keep flailing
1 parent a3b8651 commit c013a61

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>{Object.keys(fieldContent).join(", ")}</Revealer>;
686+
return <Revealer>{Object.keys(fieldContent).join(", ")}</Revealer>;
687687
}
688688
return stacFormatter.format(fieldContent, column.fieldName);
689689
}

0 commit comments

Comments
 (0)