diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-08-10 12:18:02 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-08-10 12:18:02 +0900 |
| commit | 26df23bb6463133a516217b89c0a9ec992f4ac3f (patch) | |
| tree | fe14e0f70c99bb373f180498c76badf39f4ef8d6 /src | |
| parent | chore(client): Design tweaks (diff) | |
| download | sharkey-26df23bb6463133a516217b89c0a9ec992f4ac3f.tar.gz sharkey-26df23bb6463133a516217b89c0a9ec992f4ac3f.tar.bz2 sharkey-26df23bb6463133a516217b89c0a9ec992f4ac3f.zip | |
chore(client): fix style
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/components/instance-stats.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/instance-stats.vue b/src/client/components/instance-stats.vue index 1b9e75ad64..5146c90f2e 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, + fill: x.fill == null ? true : x.false, hidden: !!x.hidden })) }, |