From b472440ec18880087063b58040d4455185d3d3b3 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Fri, 20 Dec 2024 15:50:38 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=9D=B4=EB=AF=B8=EC=A7=80=20=EA=B2=BD?= =?UTF-8?q?=EB=A1=9C=EC=97=90=20=EB=B9=88=EC=B9=B8=EC=9D=B4=20=EC=9E=88?= =?UTF-8?q?=EB=8A=94=20=EA=B2=BD=EC=9A=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/ts/components/GeneralBasicCard.vue | 4 ++-- hwe/ts/components/GeneralLiteCard.vue | 2 +- hwe/ts/components/MapCityDetail.vue | 2 +- hwe/ts/components/SammoBar.vue | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/hwe/ts/components/GeneralBasicCard.vue b/hwe/ts/components/GeneralBasicCard.vue index 0d1a1e4f..169625a6 100644 --- a/hwe/ts/components/GeneralBasicCard.vue +++ b/hwe/ts/components/GeneralBasicCard.vue @@ -3,7 +3,7 @@
@@ -83,7 +83,7 @@
diff --git a/hwe/ts/components/GeneralLiteCard.vue b/hwe/ts/components/GeneralLiteCard.vue index 2183b75f..d6266310 100644 --- a/hwe/ts/components/GeneralLiteCard.vue +++ b/hwe/ts/components/GeneralLiteCard.vue @@ -3,7 +3,7 @@
diff --git a/hwe/ts/components/MapCityDetail.vue b/hwe/ts/components/MapCityDetail.vue index dd8158fa..ae275690 100644 --- a/hwe/ts/components/MapCityDetail.vue +++ b/hwe/ts/components/MapCityDetail.vue @@ -9,7 +9,7 @@ v-if="city.color" :class="`city_bg b${city.color.substring(1)}`" :style="{ - backgroundImage: `url(${imagePath}/b${city.color.substring(1).toUpperCase()}.png)`, + backgroundImage: `url('${imagePath}/b${city.color.substring(1).toUpperCase()}.png')`, }" > diff --git a/hwe/ts/components/SammoBar.vue b/hwe/ts/components/SammoBar.vue index ec49f75a..8810dafc 100644 --- a/hwe/ts/components/SammoBar.vue +++ b/hwe/ts/components/SammoBar.vue @@ -18,7 +18,7 @@ left: '0', width: '100%', height: `${props.height}px`, - backgroundImage: `url(${imagePath}/pr${props.height - 2}.gif)`, + backgroundImage: `url('${imagePath}/pr${props.height - 2}.gif')`, backgroundRepeat: 'repeat-x', backgroundPosition: 'center', }" @@ -30,7 +30,7 @@ left: '0', width: `${clamp(props.percent, 0, 100)}%`, height: `${props.height}px`, - backgroundImage: `url(${imagePath}/pb${props.height - 2}.gif)`, + backgroundImage: `url('${imagePath}/pb${props.height - 2}.gif')`, backgroundRepeat: 'repeat-x', backgroundPosition: 'left center',