Skip to content

Commit

Permalink
Merge branch 'hotfix-samples-table-dates' into release-20094
Browse files Browse the repository at this point in the history
  • Loading branch information
tom114 committed Dec 24, 2020
2 parents 8a2d9d0 + 210916f commit f8cb486
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ Changes
* [Developer]: Removed invalid javax.interceptor-api Maven artifact. It was no longer needed for the project and was causing build failures. Existing `20.09.2` installations do not need to be upgraded, this change only affects building IRIDA from source. (20.09.3)
* [Developer]: Changed to using GitHub Actions for integration tests.
* [Developer]: Switched to Chromedriver 86 to match Github Actions chrome version.
* [UI]: Fixed bug where a user could not click the `Sync Now` button for a remote project if the status was set to `Unauthorized`.
* [UI]: Fixed bug where a user could not click the `Sync Now` button for a remote project if the status was set to `Unauthorized`. (20.09.4)
* [UI]: Fixed issue with project samples table not displaying `Created Date` and `Modified Date` for samples. (20.09.4)

20.05 to 20.09
--------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -334,9 +334,7 @@ const config = Object.assign({}, tableConfig, {
{
targets: [COLUMNS.CREATED_DATE, COLUMNS.MODIFIED_DATE],
render(data) {
return `<time>${formatInternationalizedDateTime({
date: data,
})}</time>`;
return `<time>${formatInternationalizedDateTime(data)}</time>`;
},
},
],
Expand Down

0 comments on commit f8cb486

Please sign in to comment.