Skip to content

Commit

Permalink
fix: more lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
domoberzin committed Aug 13, 2023
1 parent 8bd7ac4 commit 19fbaf4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h5 class="modal-title" *ngIf="isDeleteModal() || isSessionDeleteModal()">Confir

<div>
<h1>Students</h1>
<tm-sortable-table
<tm-sortable-table
[columns]="studentColumnsData"
[rows]="studentRowsData"
[sortOrder]="sortStudentsBy"
Expand All @@ -39,7 +39,7 @@ <h1>Students</h1>

<div>
<h1>Instructors</h1>
<tm-sortable-table
<tm-sortable-table
[columns]="instructorColumnsData"
[rows]="instructorRowsData"
[sortOrder]="sortInstructorsBy"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,9 @@ export class ExtensionConfirmModalComponent implements OnInit {
},
{
value: studentData.extensionDeadline,
displayValue: this.dateDetailPipe.transform(studentData.extensionDeadline, this.feedbackSessionTimeZone),
displayValue: this.dateDetailPipe.transform(
studentData.extensionDeadline,
this.feedbackSessionTimeZone),
},
];
return rowData;
Expand Down

0 comments on commit 19fbaf4

Please sign in to comment.