Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 3653 Rev 3654
Línea 47... Línea 47...
47
        }}
47
        }}
48
      />
48
      />
49
      <CardContent>
49
      <CardContent>
50
        <Typography variant='h1'>{capsule.name}</Typography>
50
        <Typography variant='h1'>{capsule.name}</Typography>
51
        <Typography>{parse(capsule.description)}</Typography>
51
        <Typography>{parse(capsule.description)}</Typography>
52
 
-
 
53
        <Box sx={{ mt: 1, display: 'flex', flexDirection: 'column', gap: 1 }}>
-
 
54
          <CapsuleCommentForm onSubmit={addComment} />
-
 
55
          <CommentList comments={capsule.comments} onDelete={deleteComment} />
-
 
56
        </Box>
-
 
57
      </CardContent>
-
 
58
 
-
 
59
      <CardActions>
-
 
60
        {capsule?.slides?.length > 0 && (
52
        {capsule?.slides?.length > 0 && (
61
          <Button variant='contained' color='primary' onClick={showContent}>
53
          <Button variant='contained' color='primary' onClick={showContent}>
62
            Ver contenido
54
            Ver contenido
63
          </Button>
55
          </Button>
64
        )}
56
        )}
-
 
57
      </CardContent>
-
 
58
 
-
 
59
      <CardActions>
-
 
60
        <Box sx={{ mt: 1, display: 'flex', flexDirection: 'column', gap: 1 }}>
-
 
61
          <CapsuleCommentForm onSubmit={addComment} />
-
 
62
          <CommentList comments={capsule.comments} onDelete={deleteComment} />
-
 
63
        </Box>
65
      </CardActions>
64
      </CardActions>
66
    </Card>
65
    </Card>
67
  );
66
  );
68
}
67
}