diff --git a/CHANGELOG.md b/CHANGELOG.md index 5081e3858b8..deafca82841 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 -------------- diff --git a/src/main/webapp/resources/js/pages/projects/samples/project-samples.js b/src/main/webapp/resources/js/pages/projects/samples/project-samples.js index 879668d61d8..cabc1427177 100644 --- a/src/main/webapp/resources/js/pages/projects/samples/project-samples.js +++ b/src/main/webapp/resources/js/pages/projects/samples/project-samples.js @@ -334,9 +334,7 @@ const config = Object.assign({}, tableConfig, { { targets: [COLUMNS.CREATED_DATE, COLUMNS.MODIFIED_DATE], render(data) { - return ``; + return ``; }, }, ],