We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8686b0 commit c4768b8Copy full SHA for c4768b8
app/pods/components/user-tag-graph/component.js
@@ -31,7 +31,7 @@ export default class UserTagComponent extends Component {
31
labels: userTags.map(_ => _.get('tag.name')),
32
datasets: [
33
{
34
- data: userTags.map(_ => +_.get('rating')),
+ data: userTags.map(_ => Math.round(+_.get('rating'))),
35
fill:false,
36
backgroundColor: this.gradient
37
}
0 commit comments