Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 2314 Rev 2321
Línea 41... Línea 41...
41
        <SearchList
41
        <SearchList
42
          title="Grupos unidos"
42
          title="Grupos unidos"
43
          fetchCallback={fetchJoinedGroups}
43
          fetchCallback={fetchJoinedGroups}
44
        />
44
        />
45
        <div className="companies-list" id="profiles-container">
45
        <div className="companies-list" id="profiles-container">
46
            {
46
          {
47
              joinedGroups.length
47
            joinedGroups.length
48
                ?
48
              ?
49
                joinedGroups.map(
49
              joinedGroups.map(
50
                  ({ image, name, privacy, link_view, link_leave }, index) => (
50
                ({ image, name, privacy, link_view, link_leave }, index) => (
51
                    <Profile
51
                  <Profile
52
                      image={image}
52
                    image={image}
53
                      name={name}
53
                    name={name}
54
                      status={privacy}
54
                    status={privacy}
55
                      link_view={link_view}
55
                    link_view={link_view}
56
                      link_leave={link_leave}
56
                    link_leave={link_leave}
57
                      key={index}
57
                    key={index}
58
                      fetchCallback={fetchJoinedGroups}
58
                    fetchCallback={fetchJoinedGroups}
-
 
59
                    btnAcceptTitle='Ver grupo'
-
 
60
                    btnEditTitle='Editar grupo'
-
 
61
                    btnDeleteTitle='Borrar grupo'
59
                    />
62
                  />
60
                  ))
63
                ))
61
                :
64
              :
62
                <div style={{ margin: "auto", textAlign: "center" }}>
65
              <div style={{ margin: "auto", textAlign: "center" }}>
63
                  Ningún registro coincidio con su consulta
66
                Ningún registro coincidio con su consulta
64
                </div>
67
              </div>
65
            }
68
          }
66
          {/* <!--product-feed-tab end--> */}
69
          {/* <!--product-feed-tab end--> */}
67
        </div>
70
        </div>
68
      </div>
71
      </div>
69
      {
72
      {
70
        loading &&
73
        loading &&