Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
lalBi94 committed Nov 19, 2023
1 parent 3425ec7 commit ce509f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/class/Graph/Graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export default class Graph {
const rev = this.pages[i].getRelevance();
if (rev <= 0.10) {
context.fillStyle = "red";
} else if (rev <= 0.12) {
} else if (rev <= 0.14) {
context.fillStyle = "orange";
} else {
context.fillStyle = "green";
Expand Down
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ window.addEventListener("load", () => {
T++;

console.log("--------------------------------------------------------")
}, 100)
}, 1)
});

0 comments on commit ce509f1

Please sign in to comment.