Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2864 Rev 2893
Línea 75... Línea 75...
75
    <>
75
    <>
76
      <Row>
76
      <Row>
77
        <FeedReactions reactions={ownerReactions} reactionsUrl={reactionsUrl} />
77
        <FeedReactions reactions={ownerReactions} reactionsUrl={reactionsUrl} />
Línea 78... Línea 78...
78
 
78
 
79
        <Row>
79
        <Row>
80
          <Typography
80
          {totalComments ? (
81
            variant='body2'
-
 
82
            sx={{ display: totalComments ? 'inline-flex' : 'none' }}
-
 
83
          >
81
            <Typography variant='body2'>
84
            {`${totalComments} ${labels.comments?.toLowerCase()}`}
82
              {`${totalComments} ${labels.comments?.toLowerCase()}`}
-
 
83
            </Typography>
Línea 85... Línea 84...
85
          </Typography>
84
          ) : null}
86
 
85
 
87
          <Typography
-
 
88
            variant='body2'
-
 
89
            sx={{ display: totalShared ? 'inline-flex' : 'none' }}
86
          {totalShared ? (
90
          >
87
            <Typography variant='body2'>
-
 
88
              {`${totalShared} ${labels.shared?.toLowerCase()}`}
Línea 91... Línea 89...
91
            {`${totalShared} ${labels.shared?.toLowerCase()}`}
89
            </Typography>
92
          </Typography>
90
          ) : null}
93
 
-
 
94
          <Typography
-
 
95
            variant='body2'
91
 
96
            sx={{ display: externalShare ? 'inline-flex' : 'none' }}
92
          {externalShare ? (
-
 
93
            <Typography variant='body2'>
97
          >
94
              {`${externalShare} ${labels.sends?.toLowerCase()}`}
98
            {`${externalShare} ${labels.sends?.toLowerCase()}`}
95
            </Typography>
99
          </Typography>
96
          ) : null}
100
        </Row>
97
        </Row>
101
      </Row>
98
      </Row>