Skip to content
Snippets Groups Projects
Commit d3f66a89 authored by pnogal's avatar pnogal
Browse files

Fix single closing tags

parent 6e3eca2d
No related branches found
No related tags found
No related merge requests found
...@@ -5,8 +5,7 @@ ...@@ -5,8 +5,7 @@
fxLayout.lt-md="column" fxLayout.lt-md="column"
fxFlex="100" fxFlex="100"
fxLayoutGap="10px" fxLayoutGap="10px"
class="course-details-header" class="course-details-header">
>
<div fxFlex="50" class="course-detail-title" fxLayoutAlign="start center"> <div fxFlex="50" class="course-detail-title" fxLayoutAlign="start center">
<h3> <h3>
{{ courseDetails.fullCourseDesignation | titlecase {{ courseDetails.fullCourseDesignation | titlecase
...@@ -19,8 +18,7 @@ ...@@ -19,8 +18,7 @@
*ngIf="type === 'search' || type === 'saved'" *ngIf="type === 'search' || type === 'saved'"
fxFlex="50" fxFlex="50"
fxLayout="row" fxLayout="row"
fxLayoutAlign="end start" fxLayoutAlign="end start">
>
<div class="term-selection"> <div class="term-selection">
<form [formGroup]="termSelector" (ngSubmit)="addCourseToPlan($event)"> <form [formGroup]="termSelector" (ngSubmit)="addCourseToPlan($event)">
<mat-form-field style="margin-right:20px;"> <mat-form-field style="margin-right:20px;">
...@@ -30,14 +28,12 @@ ...@@ -30,14 +28,12 @@
matInput matInput
role="listbox" role="listbox"
formControlName="term" formControlName="term"
cdkFocusInitial cdkFocusInitial>
>
<mat-option <mat-option
role="option" role="option"
*ngFor="let term of (droppableTermCodes$ | async)" *ngFor="let term of (droppableTermCodes$ | async)"
[value]="term" [value]="term"
>{{ term | getTermDescription }}</mat-option >{{ term | getTermDescription }}</mat-option>
>
</mat-select> </mat-select>
</mat-form-field> </mat-form-field>
...@@ -45,8 +41,7 @@ ...@@ -45,8 +41,7 @@
mat-raised-button mat-raised-button
color="primary" color="primary"
mat-dialog-close mat-dialog-close
(click)="addCourseToPlan($event)" (click)="addCourseToPlan($event)">
>
Add to plan Add to plan
</button> </button>
</form> </form>
...@@ -59,8 +54,7 @@ ...@@ -59,8 +54,7 @@
fxLayout="column" fxLayout="column"
fxLayoutAlign="space-around start" fxLayoutAlign="space-around start"
fxLayoutGap="10px" fxLayoutGap="10px"
class="course-details-content" class="course-details-content">
>
<p>{{ courseDetails.description }}</p> <p>{{ courseDetails.description }}</p>
<p *ngIf="courseDetails.enrollmentPrerequisites"> <p *ngIf="courseDetails.enrollmentPrerequisites">
...@@ -110,15 +104,12 @@ ...@@ -110,15 +104,12 @@
*ngIf=" *ngIf="
courseDetails.gradCourseWork || courseDetails.gradCourseWork ||
courseDetails.workplaceExperience || courseDetails.workplaceExperience ||
courseDetails.foreignLanguage courseDetails.foreignLanguage">
"
>
<span class="semi-bold">Course Options:</span> <span class="semi-bold">Course Options:</span>
<ul class="courseDetails-nested-list"> <ul class="courseDetails-nested-list">
<li> <li>
<span *ngIf="courseDetails.gradCourseWork" <span *ngIf="courseDetails.gradCourseWork"
>50% Graduate Coursework Requirement</span >50% Graduate Coursework Requirement</span>
>
<span *ngIf="courseDetails.workplaceExperience">{{ <span *ngIf="courseDetails.workplaceExperience">{{
courseDetails.workplaceExperience.description courseDetails.workplaceExperience.description
}}</span> }}</span>
...@@ -147,26 +138,22 @@ ...@@ -147,26 +138,22 @@
fxLayout.lt-sm="column" fxLayout.lt-sm="column"
class="mat-dialog-actions" class="mat-dialog-actions"
fxLayoutAlign="start center" fxLayoutAlign="start center"
fxLayoutAlign.lt-sm="start start" fxLayoutAlign.lt-sm="start start">
>
<a <a
class="md-primary btn-link mat-button" class="md-primary btn-link mat-button"
target="_blank" target="_blank"
href="{{ courseDetails.subject.departmentURI }}" href="{{ courseDetails.subject.departmentURI }}"
>Website</a >Website</a>
>
<a <a
class="md-primary btn-link mat-button" class="md-primary btn-link mat-button"
target="_blank" target="_blank"
href="{{ courseDetails.subject.undergraduateCatalogURI }}" href="{{ courseDetails.subject.undergraduateCatalogURI }}"
>Undergraduate Info</a >Undergraduate Info</a>
>
<a <a
class="md-primary btn-link mat-button" class="md-primary btn-link mat-button"
target="_blank" target="_blank"
href="{{ courseDetails.subject.graduateCatalogURI }}" href="{{ courseDetails.subject.graduateCatalogURI }}"
>Graduate Info</a >Graduate Info</a>
>
</div> </div>
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment