We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd2dfa9 commit ad1fbb3Copy full SHA for ad1fbb3
src/field-list/type-list.js
@@ -63,7 +63,8 @@ var TypeListItem = View.extend(tooltipMixin, {
63
probability_percentage: {
64
deps: ['model.probability'],
65
fn: function() {
66
- return numeral(this.model.probability).format('0.00%');
+ // no rounding, use exact proportions for relative widths
67
+ return this.model.probability * 100 + '%';
68
}
69
},
70
tooltip_message: {
0 commit comments