no longer display rating volatility - for #3738

scalafixDisable
Thibault Duplessis 2017-10-23 07:57:43 -05:00
parent 3a76df49dc
commit fafdb9554e
2 changed files with 1 additions and 7 deletions

View File

@ -64,7 +64,6 @@ object JsonView {
Json.obj(
"rating" -> round(p.rating),
"deviation" -> round(p.deviation),
"volatility" -> round(p.volatility, 3),
"provisional" -> p.provisional
)
}

View File

@ -41,12 +41,7 @@ module.exports = function(d) {
m('strong', {
title: 'Lower value means the rating is more stable. Above 110, the rating is considered provisional.'
}, d.perf.glicko.deviation),
'. ',
'Rating volatility: ',
m('strong', {
title: 'Lower value means the player is more consistent.'
}, d.perf.glicko.volatility),
'.'
'. '
])
];
};