This commit is contained in:
Victor Batischev 2024-04-02 18:29:29 +03:00
parent 140d4689fe
commit a3bcfc7cf7
2 changed files with 5 additions and 8 deletions

View File

@ -286,15 +286,15 @@ export const ProfileCalendarComponent = React.memo(
? `${getCorrectDate(startDate)} - ${getCorrectDate(endDate)}`
: `${getCorrectDate(endDate)} - ${getCorrectDate(startDate)}`
: activePeriod
? "Выберите диапазон на календаре"
: "Выбрать диапазон"}
? "Выберите диапазон на календаре"
: "Выбрать диапазон"}
</span>
<span>
{totalRangeHours
? `${totalRangeHours} ${hourOfNum(totalRangeHours)}`
: endDate
? "0 часов"
: ""}
? "0 часов"
: ""}
</span>
{endDate && (
<BaseButton

View File

@ -108,10 +108,7 @@ export const ProjectTicket = ({ project, index }) => {
</div>
</Link>
<Link
to={`/profile/statistics/${project.id}`}
className="project-stats"
>
<Link to={`/profile/statistics/${project.id}`} className="project-stats">
Посмотреть статистику
</Link>