diff --git a/rpdata-ui/src/common/List.js b/rpdata-ui/src/common/List.js index a8c2aa8..8831b0c 100644 --- a/rpdata-ui/src/common/List.js +++ b/rpdata-ui/src/common/List.js @@ -41,7 +41,7 @@ export function Item({link, name, icon, author, description, tags, fictionalDate function ItemMeta({kind, value, className}) { // Hide empty fields - if (value == null || value == "") { + if (value == null || value === "") { return null } @@ -62,5 +62,9 @@ function ItemMeta({kind, value, className}) { case "author": { return
{value}
} + + default: { + return null; + } } } \ No newline at end of file