pull/6885/head
Lukasz Balcerzak 2017-09-05 21:54:17 +02:00 committed by 杨奕
parent 0adc0c0812
commit 0e0f234428
1 changed files with 2 additions and 2 deletions

View File

@ -106,9 +106,9 @@ describe('Rate', () => {
computed: {
colors() {
if (this.muted) {
return ['#999', '#999', '#999']
return ['#999', '#999', '#999'];
} else {
return ['#99A9BF', '#F7BA2A', '#FF9900']
return ['#99A9BF', '#F7BA2A', '#FF9900'];
}
}
},