Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5747 Rev 5748
Línea 61... Línea 61...
61
      className="reaction-btn"
61
      className="reaction-btn"
62
      onMouseOver={onHover}
62
      onMouseOver={onHover}
63
      onMouseOut={onUnhover}
63
      onMouseOut={onUnhover}
64
      ref={rectionBtn}
64
      ref={rectionBtn}
65
    >
65
    >
66
      {reactions.map((reaction, index) =>
66
      {settedReaction ? (
67
        reaction.type === settedReaction ? (
67
        reactions.find((reaction) => reaction.type === settedReaction).icon
68
          reaction.icon
-
 
69
        ) : (
68
      ) : (
70
          <RecommendIcon key={index} style={{ color: '#626d7a' }} />
69
        <RecommendIcon style={{ color: '#626d7a' }} />
71
        )
-
 
72
      )}
70
      )}
73
      <div className={`reactions ${showReactions ? 'active' : ''}`}>
71
      <div className={`reactions ${showReactions ? 'active' : ''}`}>
74
        {reactions.map((reaction) => (
72
        {reactions.map((reaction) => (
75
          <button
73
          <button
76
            key={reaction.type}
74
            key={reaction.type}