Skip to content

Commit 9967b7d

Browse files
committed
Fix type issues
1 parent 5d8a6c6 commit 9967b7d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

web/src/components/map/ToggleCompareMap.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,8 @@ watch(
242242
243243
const swiperColor = computed(() => {
244244
return {
245-
swiper: theme.global.current.value.colors.primary,
246-
arrow: theme.global.current.value.colors["button-text"],
245+
swiper: String(theme.global.current.value.colors.primary),
246+
arrow: String(theme.global.current.value.colors["button-text"]),
247247
};
248248
});
249249
</script>

0 commit comments

Comments
 (0)