fix(ui) - live session console no data message
This commit is contained in:
parent
e66c8eb69f
commit
f639d02604
1 changed files with 6 additions and 1 deletions
|
|
@ -92,7 +92,12 @@ export default class ConsoleContent extends React.PureComponent {
|
|||
/>
|
||||
</BottomBlock.Header>
|
||||
<BottomBlock.Content>
|
||||
<NoContent size="small" show={filtered.length === 0}>
|
||||
<NoContent title={
|
||||
<div className="capitalize flex items-center mt-16">
|
||||
<Icon name="info-circle" className="mr-2" size="18" />
|
||||
No Data
|
||||
</div>
|
||||
} size="small" show={filtered.length === 0}>
|
||||
<Autoscroll autoScrollTo={Math.max(lastIndex, 0)}>
|
||||
{filtered.map((l, index) => (
|
||||
<div
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue