Skip to content

Commit

Permalink
fix: show date cell in submissions and grants tables
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredgalanis committed Jun 27, 2024
1 parent 93ed238 commit 335a384
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/controllers/grants/detail.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default class GrantDetailsController extends Controller {
propertyName: 'submittedDate',
title: 'Submitted Date',
className: 'date-column',
component: 'date-cell',
component: 'dateCell',
},
{
propertyName: 'submissionStatus',
Expand Down
6 changes: 3 additions & 3 deletions app/controllers/grants/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ export default class GrantsIndexController extends Controller {
title: 'Start',
disableFiltering: true,
className: 'date-column',
component: 'date-cell',
component: 'dateCell',
},
{
propertyName: 'grant.endDate',
title: 'End',
disableFiltering: true,
className: 'date-column',
component: 'date-cell',
component: 'dateCell',
},
{
propertyName: 'grant.awardStatus',
Expand Down Expand Up @@ -100,7 +100,7 @@ export default class GrantsIndexController extends Controller {
title: 'End Date',
disableFiltering: true,
className: 'date-column',
component: 'date-cell',
component: 'dateCell',
},
{
propertyName: 'submissions.length',
Expand Down
4 changes: 2 additions & 2 deletions app/controllers/submissions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default class SubmissionsIndex extends Controller {
propertyName: 'submittedDate',
title: 'Submitted Date',
className: 'date-column',
component: 'date-cell',
component: 'dateCell',
},
{
propertyName: 'submissionStatus',
Expand Down Expand Up @@ -107,7 +107,7 @@ export default class SubmissionsIndex extends Controller {
propertyName: 'submittedDate',
title: 'Submitted Date',
className: 'date-column',
component: 'date-cell',
component: 'dateCell',
},
{
propertyName: 'submissionStatus',
Expand Down
1 change: 1 addition & 0 deletions app/templates/grants/detail.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@
submissionsStatusCell=(component "submissions-status-cell")
submissionsRepoidCell=(component "submissions-repoid-cell")
submissionActionCell=(component "submission-action-cell")
dateCell=(component "date-cell")
}}
@themeInstance={{this.themeInstance}}
@showColumnsDropdown={{false}}
Expand Down
1 change: 1 addition & 0 deletions app/templates/grants/index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
piListCell=(component "pi-list-cell")
grantSubmissionCell=(component "grant-submission-cell")
grantActionCell=(component "grant-action-cell")
dateCell=(component "date-cell")
}}
@themeInstance={{this.themeInstance}}
@showColumnsDropdown={{false}}
Expand Down
1 change: 1 addition & 0 deletions app/templates/submissions/index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
submissionsStatusCell=(component "submissions-status-cell")
submissionsRepoidCell=(component "submissions-repoid-cell")
submissionActionCell=(component "submission-action-cell")
dateCell=(component "date-cell")
}}
@themeInstance={{this.themeInstance}}
@showColumnsDropdown={{false}}
Expand Down

0 comments on commit 335a384

Please sign in to comment.