Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 1598 Rev 2294
Línea 66... Línea 66...
66
            addTitle="Agregar"
66
            addTitle="Agregar"
67
            addCallback={handleShowAddGroupModal}
67
            addCallback={handleShowAddGroupModal}
68
          />
68
          />
Línea 69... Línea 69...
69
 
69
 
70
          <div className="companies-list">
-
 
71
            <div
-
 
72
              className="row"
-
 
73
              id="profiles-container"
-
 
74
              style={{
-
 
75
                position: "relative",
-
 
76
              }}
70
          <div className="companies-list">
77
            >
-
 
78
              {
71
            {
79
                Groups.length
72
              Groups.length
80
                  ?
73
                ?
81
                  Groups.map(
74
                Groups.map(
82
                    ({ image, link_delete, link_edit, link_view, name, privacy }, id) => (
75
                  ({ image, link_delete, link_edit, link_view, name, privacy }, id) => (
83
                      <Profile
76
                    <Profile
84
                        image={image}
77
                      image={image}
85
                        name={name}
78
                      name={name}
86
                        status={privacy}
79
                      status={privacy}
87
                        link_view={link_view}
80
                      link_view={link_view}
88
                        link_edit={link_edit}
81
                      link_edit={link_edit}
89
                        link_delete={link_delete}
82
                      link_delete={link_delete}
90
                        key={id}
83
                      key={id}
91
                        fetchCallback={fetchGroups}
84
                      fetchCallback={fetchGroups}
92
                      />
85
                    />
93
                    ))
86
                  ))
94
                  :
87
                :
95
                  <div style={{ margin: "auto", textAlign: "center" }}>
88
                <div style={{ margin: "auto", textAlign: "center" }}>
96
                    Ningún registro coincidio con su consulta
89
                  Ningún registro coincidio con su consulta
97
                  </div>
90
                </div>
98
              }
91
            }
99
              {loading && (
92
            {loading && (
100
                <StyledSpinnerContainer>
93
              <StyledSpinnerContainer>
101
                  <Spinner />
94
                <Spinner />
102
                </StyledSpinnerContainer>
95
              </StyledSpinnerContainer>
103
              )}
-
 
104
            </div>
-
 
105
            {/* <!--product-feed-tab end--> */}
96
            )}
-
 
97
          </div>
106
          </div>
98
          {/* <!--product-feed-tab end--> */}
107
        </div>
99
        </div>
108
      </section>
100
      </section>
109
      <AddGroupModal
101
      <AddGroupModal
110
        show={showAddGroupModal}
102
        show={showAddGroupModal}