From 8694d65b2eac59e843dca8ead8dd2193691c3c10 Mon Sep 17 00:00:00 2001 From: srgooglo Date: Fri, 13 May 2022 14:56:06 +0200 Subject: [PATCH] display empty --- packages/app/src/pages/streams/index.jsx | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/packages/app/src/pages/streams/index.jsx b/packages/app/src/pages/streams/index.jsx index 4a82826f..21e33aa4 100644 --- a/packages/app/src/pages/streams/index.jsx +++ b/packages/app/src/pages/streams/index.jsx @@ -92,10 +92,15 @@ export default class Streams extends React.Component { { - this.state.list.length > 0 && -
- {this.state.list.map(this.renderListItem)} -
+ this.state.list.length > 0 ? +
+ {this.state.list.map(this.renderListItem)} +
: +
+
+ +
+
} }