From cf29e69813888c372867a166525a251e1f0d8c60 Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 10 Aug 2020 12:28:35 +0900 Subject: [PATCH] chore(client): Fix bug --- src/client/components/instance-stats.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/components/instance-stats.vue b/src/client/components/instance-stats.vue index 5146c90f2..4fdacb94c 100644 --- a/src/client/components/instance-stats.vue +++ b/src/client/components/instance-stats.vue @@ -288,7 +288,7 @@ export default Vue.extend({ borderColor: x.color, borderDash: x.borderDash || [], backgroundColor: alpha(x.color, 0.1), - fill: x.fill == null ? true : x.false, + fill: x.fill == null ? true : x.fill, hidden: !!x.hidden })) },