Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 1957 Rev 1959
Línea 21... Línea 21...
21
  labelReject = '',
21
  labelReject = '',
22
  size = 'md',
22
  size = 'md',
23
  centered = true,
23
  centered = true,
24
  animation = true,
24
  animation = true,
25
  showFooter = true,
25
  showFooter = true,
26
  dialogClassName,
-
 
27
  children
26
  children
28
}) => {
27
}) => {
29
  const [loading, setLoading] = useState(false)
28
  const [loading, setLoading] = useState(false)
30
  const labels = useSelector(({ intl }) => intl.labels)
29
  const labels = useSelector(({ intl }) => intl.labels)
Línea 41... Línea 40...
41
  }, [show, loading])
40
  }, [show, loading])
Línea 42... Línea 41...
42
 
41
 
43
  return (
42
  return (
44
    <BootstrapModal
43
    <BootstrapModal
45
      animation={animation}
44
      animation={animation}
46
      className={dialogClassName}
45
      className={styles['root-modal']}
47
      centered={centered}
46
      centered={centered}
48
      show={show}
47
      show={show}
49
      size={size}
48
      size={size}
50
      onHide={onClose}
49
      onHide={onClose}
51
      onShow={onShow}
-
 
52
      style={{
-
 
53
        zIndex: 1200
-
 
54
      }}
50
      onShow={onShow}
55
    >
51
    >
56
      <BootstrapModal.Header className={styles['modal-header']} closeButton>
52
      <BootstrapModal.Header className={styles['modal-header']} closeButton>
57
        <BootstrapModal.Title>{title}</BootstrapModal.Title>
53
        <BootstrapModal.Title>{title}</BootstrapModal.Title>