Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5788 Rev 5789
Línea 79... Línea 79...
79
      )}
79
      )}
80
      <div className={`reactions ${showReactions ? 'active' : ''}`}>
80
      <div className={`reactions ${showReactions ? 'active' : ''}`}>
81
        {reactionsOptions.map((reaction) => (
81
        {reactionsOptions.map((reaction) => (
82
          <button
82
          <button
83
            key={reaction.type}
83
            key={reaction.type}
-
 
84
            onClick={(e) => {
-
 
85
              e.stopPropagation()
84
            onClickCapture={() => selectReactionHandler(reaction.type)}
86
              selectReactionHandler(reaction.type)
-
 
87
            }}
85
          >
88
          >
86
            {reaction.icon}
89
            {reaction.icon}
87
          </button>
90
          </button>
88
        ))}
91
        ))}
89
      </div>
92
      </div>