Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2156 Rev 2157
Línea 113... Línea 113...
113
        >
113
        >
114
          {REACTIONS.map(({ type, label, icon: Icon, color }) => (
114
          {REACTIONS.map(({ type, label, icon: Icon, color }) => (
115
            <button
115
            <button
116
              key={type}
116
              key={type}
117
              title={label}
117
              title={label}
118
              onClickCapture={(e) => saveReaction(type)}
118
              onClickCapture={(e) => {
-
 
119
                e.stopPropagation()
-
 
120
                saveReaction(type)
-
 
121
              }}
119
            >
122
            >
120
              <Icon style={{ color }} />
123
              <Icon style={{ color }} />
121
            </button>
124
            </button>
122
          ))}
125
          ))}
123
        </ReactionsBox>
126
        </ReactionsBox>