Procházet zdrojové kódy

bag label for empty channels

Joystream Stats před 2 roky
rodič
revize
a460197fc9
1 změnil soubory, kde provedl 3 přidání a 1 odebrání
  1. 3 1
      src/components/Distribution/Bag.tsx

+ 3 - 1
src/components/Distribution/Bag.tsx

@@ -18,7 +18,9 @@ const Bag = (props: { id: number; operator: Operator; objects: Object[] }) => {
   }, [endpoint, objects]);
   const channelId = id.split(":")[2];
   const title = objects
-    ? responseTime
+    ? !objects.length
+      ? `channel is empty`
+      : responseTime
       ? responseTime + `ms`
       : `sent request`
     : `fetching list`;