Skip to content

Commit

Permalink
cleanup refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Ninarchive committed Dec 7, 2023
1 parent 09fc6f9 commit a8d0411
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/project/controls/ProjectDuration.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const ProjectDuration = ({project}: {project: IProjectModel}) => (
) : (
<>
<Icon fa="fa fa-arrow-right" />
<Icon fa="fa fa-infinity"/>
<Icon fa="fa fa-infinity" />
</>
)}
</div>
Expand All @@ -45,7 +45,7 @@ export const ProjectDurationSmall = ({project}: {project: IProjectModel}) => (
</>
) : (
<>
<Icon fa="fa fa-arrow-right" size={1}/>
<Icon fa="fa fa-arrow-right" size={1} />
<Icon fa="fa fa-infinity" size={1} />
</>
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export type TimesheetBadgeProps = {

const TimeSheetOkBadge = (
<span className="badge rounded-pill text-white bg-success">
<i className="fa fa-clock fa-1x tst-icon-date" />
<i className="fa fa-clock fa-1x" />
{t('projectMonth.list.timesheetOk')}
</span>
)
Expand Down

0 comments on commit a8d0411

Please sign in to comment.