Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2912 Rev 2913
Línea 29... Línea 29...
29
  show_contact: showContact,
29
  show_contact: showContact,
30
  sizes,
30
  sizes,
31
  total_connections: totalConnections,
31
  total_connections: totalConnections,
32
  twitter,
32
  twitter,
33
  user_experiences: userExperiences = [],
33
  user_experiences: userExperiences = [],
34
  user_profile_id: userProfileId,
-
 
35
  view_following: viewFollowing,
34
  view_following: viewFollowing,
36
  view_total_connections: viewTotalConnections
35
  view_total_connections: viewTotalConnections
37
}) => {
36
}) => {
38
  const [isAdded, setIsAdded] = useState(false)
37
  const [isAdded, setIsAdded] = useState(false)
39
  const [connectionUrl, setConnectionUrl] = useState('')
38
  const [connectionUrl, setConnectionUrl] = useState('')
Línea 133... Línea 132...
133
 
132
 
134
        <Row>
133
        <Row>
135
          {viewTotalConnections ? (
134
          {viewTotalConnections ? (
136
            <Link to='/connection/my-connections'>
135
            <Link to='/connection/my-connections'>
137
              <Typography variant='body2'>
136
              <Typography variant='body2'>
138
                {`${totalConnections} ${labels.connections}`}
137
                {`${totalConnections} conexiones`}
139
              </Typography>
138
              </Typography>
140
            </Link>
139
            </Link>
141
          ) : null}
140
          ) : null}
142
          {viewFollowing ? (
141
          {viewFollowing ? (
143
            <Link onClick={(e) => e.preventDefault()}>
142
            <Link onClick={(e) => e.preventDefault()}>
144
              <Typography variant='body2'>
143
              <Typography variant='body2'>
145
                {`${following} ${labels.following}`}
144
                {`${following} siguiendo`}
146
              </Typography>
145
              </Typography>
147
            </Link>
146
            </Link>
148
          ) : null}
147
          ) : null}