Added missing half rounded down icon for skills in stats tab

This commit is contained in:
Stefan Zermatten
2021-04-22 15:40:26 +02:00
parent 3d122e062f
commit a28182f3e9

View File

@@ -52,7 +52,9 @@ export default {
}, },
computed: { computed: {
icon(){ icon(){
if (this.model.proficiency == 0.5){ if (this.model.proficiency == 0.49){
return 'brightness_3';
} else if (this.model.proficiency == 0.5){
return 'brightness_2'; return 'brightness_2';
} else if (this.model.proficiency == 1) { } else if (this.model.proficiency == 1) {
return 'brightness_1' return 'brightness_1'