Update the color of the alert from red to yellow

This commit is contained in:
Simon Chen
2018-12-13 14:50:38 -05:00
parent 7486a342e2
commit 9a0e0e0ece

View File

@@ -255,7 +255,7 @@ export default class Gradebook extends React.Component {
<h1>Gradebook</h1>
<h3> {this.props.match.params.courseId}</h3>
{ this.props.areGradesFrozen &&
<div className="alert alert-danger" role="alert" >
<div className="alert alert-warning" role="alert" >
The grades for this course are now frozen. Editing of grades is no longer allowed.
</div>
}