unc-csxl / csxl.unc.edu

CS Experience Labs' web application.
https://csxl.unc.edu
MIT License
9 stars 7 forks source link

Change Buttons to Use <a> Tags #502

Open ajaygandecha opened 2 weeks ago

ajaygandecha commented 2 weeks ago

Change all instances of material buttons to use <a> tags, such as the following:

https://github.com/unc-csxl/csxl.unc.edu/blob/ce6136b5376db87086f329d5d26f4d8bc990ba00/frontend/src/app/my-courses/widgets/course-card/course-card.widget.html#L23-L29

This would change to:

<a
      mat-flat-button
      color="primary"
      type="submit"
      [routerLink]="'/course/' + termId + '/' + course.id">
      Get Help
</a>
coderight1 commented 2 weeks ago

@ajaygandecha Working on it .