chore: update UI dev libs and fix warnings & vulnerabilities (#24648)

This commit is contained in:
EugeneTorap
2023-07-11 05:44:35 +03:00
committed by GitHub
parent 7b957369fc
commit 117435f0d8
18 changed files with 14463 additions and 11761 deletions

View File

@@ -223,10 +223,14 @@ const TableElement = ({ table, ...props }: TableElementProps) => {
</small>
</div>
));
if (!metadata?.length) {
// hide metadata card view
return null;
}
}
if (!partitions && (!metadata || !metadata.length)) {
// hide partition and metadata card view
if (!partitions) {
// hide partition card view
return null;
}