diff --git a/frontend/src/components/tables/CustomTable/CustomTable.jsx b/frontend/src/components/tables/CustomTable/CustomTable.jsx
index 4e75a684..98d8f2e7 100644
--- a/frontend/src/components/tables/CustomTable/CustomTable.jsx
+++ b/frontend/src/components/tables/CustomTable/CustomTable.jsx
@@ -11,7 +11,7 @@ const CustomTable = ({ table }) => {
className="divTable table-striped"
style={{
width: '100%',
- height: '100%',
+ height: '100%', // ONLY required when using virtual tables
display: 'flex',
flexDirection: 'column',
}}
diff --git a/frontend/src/components/tables/StreamsTable.jsx b/frontend/src/components/tables/StreamsTable.jsx
index 9b4fd9c2..b39a2454 100644
--- a/frontend/src/components/tables/StreamsTable.jsx
+++ b/frontend/src/components/tables/StreamsTable.jsx
@@ -269,7 +269,9 @@ const StreamsTable = ({}) => {
textOverflow: 'ellipsis',
}}
>
- {getValue()}
+
+ {getValue()}
+
),
},