Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 440 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 440 Rev 1712
Línea 15... Línea 15...
15
  height: 100%;
15
  height: 100%;
16
  gap: 0.5rem;
16
  gap: 0.5rem;
17
  padding: 1rem 1rem !important;
17
  padding: 1rem 1rem !important;
18
  max-height: 80vh;
18
  max-height: 80vh;
19
  flex-grow: 1;
19
  flex-grow: 1;
20
 
-
 
21
`
20
`
Línea 22... Línea 21...
22
 
21
 
23
const ContactHeader = styled.div`
22
const ContactHeader = styled.div`
Línea 71... Línea 70...
71
 
70
 
72
const Header = ({ options = [], children }) => {
71
const Header = ({ options = [], children }) => {
73
  return (
72
  return (
74
    <ContactHeader>
73
    <ContactHeader>
75
      {children}
74
      {children}
76
      {!!options.length && <Options options={options} />}
75
      {!!options.length && <Options options={options} top='-0.5rem' />}
77
    </ContactHeader>
76
    </ContactHeader>
78
  )
77
  )
Línea 79... Línea 78...
79
}
78
}
80
 
79
 
81
const List = ({
80
const List = ({
82
  contacts = [],
81
  contacts = [],
83
  onChange = () => null,
82
  onChange = () => null,
84
  currentConversation,
83
  currentConversation
Línea 85... Línea 84...
85
}) => {
84
}) => {
86
  const labels = useSelector(({ intl }) => intl.labels)
85
  const labels = useSelector(({ intl }) => intl.labels)
Línea 107... Línea 106...
107
 
106
 
108
  return (
107
  return (
109
    <ContactItem onClick={() => onClick(contact)} current={isCurrent}>
108
    <ContactItem onClick={() => onClick(contact)} current={isCurrent}>
110
      <Avatar
109
      <Avatar
111
        src={contact.image || '/images/users-group.png'}
110
        src={contact.image || '/images/users-group.png'}
112
        alt="image-image"
111
        alt='image-image'
113
        sx={{ width: 32, height: 32 }}
112
        sx={{ width: 32, height: 32 }}
114
      />
113
      />
115
      <ContactInfo>
114
      <ContactInfo>
116
        <span>{contact.name}</span>
115
        <span>{contact.name}</span>