function renderWhiteBoardTags()

in pages/dashboards/webext.js [215:235]


  function renderWhiteBoardTags() {
    const children = [];
    Object.keys(whiteboardTags.data).forEach((tag) => {
      children.push(
        renderChild({
          data: whiteboardTags.data,
          dataKey: tag,
          component: tag,
          title: tag,
        }),
      );
    });

    return DashCountGroup({
      className: 'whiteboardtags',
      key: 'whiteboardtags',
      children,
      title: 'Whiteboard Tags',
      description: 'Whiteboard Tags to track',
    });
  }