diff --git a/ui/src/components/grid/listings/ListingsGrid.jsx b/ui/src/components/grid/listings/ListingsGrid.jsx index ca98318..e291de2 100644 --- a/ui/src/components/grid/listings/ListingsGrid.jsx +++ b/ui/src/components/grid/listings/ListingsGrid.jsx @@ -103,6 +103,10 @@ const ListingsGrid = () => { setPage(_page); }; + const cap = (val) => { + return String(val).charAt(0).toUpperCase() + String(val).slice(1); + }; + return (
@@ -251,11 +255,9 @@ const ListingsGrid = () => { bodyStyle={{ padding: '12px' }} >
- - - {item.title} - - + + {cap(item.title)} + } size="small"> {item.price} € @@ -287,15 +289,11 @@ const ListingsGrid = () => {
-