Skip to content

Commit

Permalink
feat: add year to the last run date [PT-187278331]
Browse files Browse the repository at this point in the history
  • Loading branch information
pjanik committed Mar 26, 2024
1 parent e7742cc commit b1d935d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react'

import css from './style.scss'

const formatDate = date => `${date.getMonth() + 1}/${date.getDate()}`
const formatDate = date => `${date.getMonth() + 1}/${date.getDate()}/${date.getFullYear()}`

export default class ProgressTable extends React.Component {
getFeedbackOptions (activityId) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@
.status {
font-style: italic;
}

.date {
padding-left: 10px;
}
}
}
}
Expand Down Expand Up @@ -71,4 +67,4 @@

.tooltipContent {
max-width: 400px;
}
}

0 comments on commit b1d935d

Please sign in to comment.