Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nightmare-adi committed Sep 28, 2021
1 parent f1cbf61 commit 3ca0d02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -474,8 +474,8 @@ export default class App extends Component {
this.state.categoryToday === "YELLOW" ? "#fa9325" :
this.state.categoryToday === "GREEN" ? "#fafa25" : "#eaeaec", fontWeight: "bold", textAlign: "center"}}>
<span className="risk-text">{this.state.categoryToday === "RED" ? "HIGH RISK" :
this.state.categoryToday === "YELLOW" ? "LOW RISK" :
this.state.categoryToday === "GREEN" ? "MEDIUM RISK" : "INSUFFICIENT DATA TO CATEGORIZE"}</span>
this.state.categoryToday === "YELLOW" ? "MEDIUM RISK" :
this.state.categoryToday === "GREEN" ? "LOW RISK" : "INSUFFICIENT DATA TO CATEGORIZE"}</span>
</div>
</div>
<div className="d-none d-lg-block last-changed-date">Risk score last changed on {this.state.lastChangeDate}</div>
Expand Down

0 comments on commit 3ca0d02

Please sign in to comment.