ソースを参照

hide empty waiting validators list

Joystream Stats 3 年 前
コミット
b11a63a810
1 ファイル変更23 行追加17 行削除
  1. 23 17
      src/components/Validators/index.tsx

+ 23 - 17
src/components/Validators/index.tsx

@@ -181,23 +181,29 @@ class Validators extends Component<IProps, IState> {
               rewardPoints={rewardPoints}
             />
           ))}
-          <hr />
-          Waiting:
-          {waiting.map((v) => (
-            <MemberBox
-              key={v}
-              id={0}
-              account={v}
-              placement={"top"}
-              councils={councils}
-              handle={handles[v]}
-              members={members}
-              posts={posts}
-              proposals={proposals}
-              startTime={startTime}
-              validators={validators}
-            />
-          ))}
+          {waiting.length ? (
+            <div>
+              <hr />
+              Waiting:
+              {waiting.map((v) => (
+                <MemberBox
+                  key={v}
+                  id={0}
+                  account={v}
+                  placement={"top"}
+                  councils={councils}
+                  handle={handles[v]}
+                  members={members}
+                  posts={posts}
+                  proposals={proposals}
+                  startTime={startTime}
+                  validators={validators}
+                />
+              ))}
+            </div>
+          ) : (
+            ""
+          )}
         </div>
       </div>
     );