function renderNeedInfos()

in pages/dashboards/webext.js [189:213]


  function renderNeedInfos() {
    const children = [];
    Object.keys(needInfos.data).forEach((nick) => {
      children.push(
        renderChild({
          data: needInfos.data,
          dataKey: nick,
          component: nick,
          title: nick,
          warningLimit: 5,
        }),
      );
    });

    children.push(<DashBlank key="ni-blank-1" />);
    children.push(<DashBlank key="ni-blank-2" />);

    return DashCountGroup({
      className: 'needinfos',
      key: 'needinfos',
      children,
      title: 'Need Infos',
      description: 'Count of need info requests',
    });
  }