Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2889 Rev 2917
Línea 88... Línea 88...
88
            <li key={category}>{category}</li>
88
            <li key={category}>{category}</li>
89
          ))}
89
          ))}
90
        </QuestionCategories>
90
        </QuestionCategories>
Línea 91... Línea 91...
91
 
91
 
92
        <Typography variant='h2'>{title}</Typography>
92
        <Typography variant='h2'>{title}</Typography>
93
        <Typography variant='body2'>{`${labels.my_coach_question} ${added_on}`}</Typography>
93
        <Typography variant='overline'>{`${labels.my_coach_question} ${added_on}`}</Typography>
94
        {last_answer_on ? (
94
        {last_answer_on ? (
95
          <Typography variant='body2'>{`${labels.my_coach_last_answer} ${last_answer_on}`}</Typography>
95
          <Typography variant='overline'>{`${labels.my_coach_last_answer} ${last_answer_on}`}</Typography>
96
        ) : null}
96
        ) : null}
97
        <Typography>{parse(description)}</Typography>
97
        <Typography>{parse(description)}</Typography>
Línea 98... Línea 98...
98
      </Widget.Body>
98
      </Widget.Body>
99
 
99
 
100
      <QuestionStats>
100
      <QuestionStats>
101
        <Typography variant='body2'>{`${answers} ${labels.my_coach_answers}`}</Typography>
101
        <Typography variant='overline'>{`${answers} ${labels.my_coach_answers}`}</Typography>
102
        <Typography variant='body2'>{`${reactions} ${labels.my_coach_reactions}`}</Typography>
102
        <Typography variant='overline'>{`${reactions} ${labels.my_coach_reactions}`}</Typography>
103
        <Typography variant='body2'>{`${views} ${labels.my_coach_views}`}</Typography>
103
        <Typography variant='overline'>{`${views} ${labels.my_coach_views}`}</Typography>
Línea 104... Línea 104...
104
        <Typography variant='body2'>{`${comments} ${labels.comments}`}</Typography>
104
        <Typography variant='overline'>{`${comments} ${labels.comments}`}</Typography>
105
      </QuestionStats>
105
      </QuestionStats>
106
 
106