Explorar el Código

bag label for empty channels

Joystream Stats hace 2 años
padre
commit
a460197fc9
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  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`;