Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 7245 Rev 7246
Línea 93... Línea 93...
93
          <li key={contact.id || contact.uuid}>
93
          <li key={contact.id || contact.uuid}>
94
            <List.Item
94
            <List.Item
95
              contact={contact}
95
              contact={contact}
96
              onClick={onChange}
96
              onClick={onChange}
97
              isCurrent={
97
              isCurrent={
98
                currentConversation?.id
98
                (currentConversation &&
99
                  ? currentConversation.id === contact.id
99
                  currentConversation.id === contact.id) ||
100
                  : currentConversation.uuid === contact.uuid
100
                currentConversation.uuid === contact.uuid
101
              }
101
              }
102
            />
102
            />
103
          </li>
103
          </li>
104
        ))
104
        ))
105
      )}
105
      )}