Skip to content

Commit

Permalink
Merge pull request #1259 from concord-consortium/187278331-last-run-year
Browse files Browse the repository at this point in the history
Add year to the last run date
  • Loading branch information
pjanik committed Mar 26, 2024
2 parents bc3f9b5 + b1d935d commit b34740b
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 b34740b

Please sign in to comment.