change(ui) - no data msg
This commit is contained in:
parent
e620d28203
commit
517cce7241
1 changed files with 2 additions and 2 deletions
|
|
@ -18,8 +18,8 @@ function SessionList(props: Props) {
|
|||
return (
|
||||
<Loader loading={props.loading}>
|
||||
<NoContent
|
||||
show={ !props.loading && (props.list.length === 0 )}
|
||||
title="No recordings found."
|
||||
show={ !props.loading && (props.list.size === 0 )}
|
||||
title="No live sessions."
|
||||
>
|
||||
<div className="p-4">
|
||||
{ props.list.map(session => <SessionItem key={ session.sessionId } session={ session } />) }
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue