Skip to content

Commit

Permalink
forgot to include 80%
Browse files Browse the repository at this point in the history
  • Loading branch information
wh1te909 committed Jan 17, 2024
1 parent 16fb75b commit 00a40dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/agents/SummaryTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ export default {
function diskBarColor(percent) {
if (percent < 80) {
return dash_positive_color.value;
} else if (percent > 80 && percent < 95) {
} else if (percent >= 80 && percent < 95) {
return dash_warning_color.value;
} else {
return dash_negative_color.value;
Expand Down

0 comments on commit 00a40dd

Please sign in to comment.