MetricsTable anchor more to bottom of component
This commit is contained in:
@@ -73,11 +73,13 @@ export function MetricsTable({
|
||||
isFetching={isFetching}
|
||||
isLoading={isLoading}
|
||||
error={error}
|
||||
minHeight="380px"
|
||||
minHeight="400px"
|
||||
>
|
||||
{data && <ListTable {...props} data={filteredData} renderLabel={renderLabel} />}
|
||||
<div style={{ display: 'grid', gridTemplateRows: '1fr auto', minHeight: '400px' }}>
|
||||
<div>{data && <ListTable {...props} data={filteredData} renderLabel={renderLabel} />}</div>
|
||||
<div>
|
||||
{showMore && limit && (
|
||||
<Row justifyContent="center">
|
||||
<Row justifyContent="center" alignItems="flex-end">
|
||||
<LinkButton href={updateParams({ view: type })} variant="quiet">
|
||||
<Icon size="sm">
|
||||
<Maximize />
|
||||
@@ -86,6 +88,8 @@ export function MetricsTable({
|
||||
</LinkButton>
|
||||
</Row>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</LoadingPanel>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user