Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 2945 | Rev 2947 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 2945 Rev 2946
Línea 54... Línea 54...
54
        <IconButton onClick={toggleMenu}>
54
        <IconButton onClick={toggleMenu}>
55
          {displayMenu ? <ExpandLess /> : <ExpandMore />}
55
          {displayMenu ? <ExpandLess /> : <ExpandMore />}
56
        </IconButton>
56
        </IconButton>
57
      </HelperItem>
57
      </HelperItem>
Línea -... Línea 58...
-
 
58
 
-
 
59
      <List
-
 
60
        styles={{
58
 
61
          width: '100%',
-
 
62
          height: displayMenu ? 'auto' : 0,
-
 
63
          overflow: 'hidden'
-
 
64
        }}
59
      <List styles={{ width: '100%', height: displayMenu ? 'auto' : 0 }}>
65
      >
60
        {items.map(({ id, name, profile, image }) => (
66
        {items.map(({ id, name, profile, image }) => (
61
          <List.Item key={id} image={image} title={name} url={profile} />
67
          <List.Item key={id} image={image} title={name} url={profile} />
Línea 62... Línea 68...
62
        ))}
68
        ))}
63
 
69
 
64
        {items.length > 3 && (
70
        {data.length > 3 && (
65
          <List.Item
71
          <List.Item
66
            title={lookMore ? labels.view_less : labels.view_more}
72
            title={lookMore ? labels.view_less : labels.view_more}
67
            onClick={() => setLookMore(!lookMore)}
73
            onClick={() => setLookMore(!lookMore)}