From f06c4adb32f2297fe87d88d4039a5381f53add5a Mon Sep 17 00:00:00 2001 From: Stefan Zermatten Date: Thu, 17 Jan 2019 15:07:12 +0200 Subject: [PATCH] Corrrected the full proficiency icon --- app/imports/ui/components/SkillListTile.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/imports/ui/components/SkillListTile.vue b/app/imports/ui/components/SkillListTile.vue index 36b938bd..061b52de 100644 --- a/app/imports/ui/components/SkillListTile.vue +++ b/app/imports/ui/components/SkillListTile.vue @@ -40,7 +40,7 @@ export default { if (this.proficiency == 0.5){ return 'brightness_2'; } else if (this.proficiency == 1) { - return 'radio_button_checked' + return 'brightness_1' } else if (this.proficiency == 2){ return 'album' } else { @@ -69,7 +69,6 @@ export default {