change(ui) - no data message for console tab
This commit is contained in:
parent
a66a1341c4
commit
ff8ef02c4c
1 changed files with 7 additions and 1 deletions
|
|
@ -86,7 +86,13 @@ export default class ConsoleContent extends React.PureComponent {
|
||||||
/>
|
/>
|
||||||
</BottomBlock.Header>
|
</BottomBlock.Header>
|
||||||
<BottomBlock.Content>
|
<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 {activeTab === ALL ? 'Data' : activeTab.toLowerCase()}</div>}
|
||||||
|
size="small"
|
||||||
|
show={filtered.length === 0}
|
||||||
|
>
|
||||||
<Autoscroll>
|
<Autoscroll>
|
||||||
{filtered.map((l, index) => (
|
{filtered.map((l, index) => (
|
||||||
<div
|
<div
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue