From 76bd9935e7dd5ef48362661ebfa16fa051f57b34 Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Tue, 19 Sep 2006 21:52:13 +0000 Subject: [PATCH] ebl display fix git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3486 91ce42f0-d328-0410-95d8-f526ca767f89 --- gui/bweb/html/bweb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/bweb/html/bweb.js b/gui/bweb/html/bweb.js index 7b73717108..fdcff51927 100644 --- a/gui/bweb/html/bweb.js +++ b/gui/bweb/html/bweb.js @@ -213,7 +213,7 @@ function percent_usage(value, parent) return; } - if (value <= 0) { + if (value <= 0.001) { type = "Empty"; value = 0; } else if (value <= 40) { -- 2.39.5