diff --git a/front/src/BigIcon.vue b/front/src/BigIcon.vue index f5d431b..56c95c4 100644 --- a/front/src/BigIcon.vue +++ b/front/src/BigIcon.vue @@ -3,19 +3,20 @@ const props = defineProps({ icon: String, - legend: String + legend: String, + isSet: Boolean }); const hovered = ref(false) - const computedIcon = computed(() => props.icon + (hovered.value ? "Fill" : "")); + const computedIcon = computed(() => props.icon + (hovered.value || props.isSet ? "Fill" : "")); +