diff --git a/src/lang/cn.ts b/src/lang/cn.ts
index 3772aedb..7ecc8c7a 100644
--- a/src/lang/cn.ts
+++ b/src/lang/cn.ts
@@ -1737,7 +1737,7 @@ export default {
GetStarted: '开始体验',
},
SellerListEdit:{
- saveDraft: "保存草稿",
+ saveDraft: "全部保存",
publish: "发布",
sketch: "线稿图",
mainProductImage: "产品主图",
diff --git a/src/lang/en.ts b/src/lang/en.ts
index 6a621158..2653c745 100644
--- a/src/lang/en.ts
+++ b/src/lang/en.ts
@@ -1788,7 +1788,7 @@ export default {
GetStarted: 'Get Started',
},
SellerListEdit:{
- saveDraft:'Save Draft',
+ saveDraft:'Save All New',
publish:'Publish',
sketch:'Sketch',
mainProductImage:'Main Product Image',
diff --git a/src/views/SellerDashboard/BrandProfile/image-clip.vue b/src/views/SellerDashboard/BrandProfile/image-clip.vue
index ffeb2f9f..189a1ec5 100644
--- a/src/views/SellerDashboard/BrandProfile/image-clip.vue
+++ b/src/views/SellerDashboard/BrandProfile/image-clip.vue
@@ -204,23 +204,23 @@
.cropper-box-canvas {
background-color: #ffffff;
- img {
- height: 100%;
- }
+ // img {
+ // height: 100%;
+ // }
}
}
&.is-cover {
:deep(.vue-cropper) {
overflow: hidden;
}
- :deep(.cropper-box-canvas) {
- width: 31.1rem !important;
- left: 50% !important;
- transform: translateX(-50%) !important;
- img {
- display: none;
- }
- }
+ // :deep(.cropper-box-canvas) {
+ // width: 31.1rem !important;
+ // left: 50% !important;
+ // transform: translateX(-50%) !important;
+ // img {
+ // display: none;
+ // }
+ // }
}
}
diff --git a/src/views/SellerDashboard/MyListings/EditDetail/components/Radio.vue b/src/views/SellerDashboard/MyListings/EditDetail/components/Radio.vue
index c746dbe7..ff0b9322 100644
--- a/src/views/SellerDashboard/MyListings/EditDetail/components/Radio.vue
+++ b/src/views/SellerDashboard/MyListings/EditDetail/components/Radio.vue
@@ -8,7 +8,7 @@
'radio-button',
{
'is-active': multiple
- ? selectedValues.includes(item.key)
+ ? selectedValues.includes(normalizeValue(item.key))
: modelValue === item.key
}
]"
@@ -20,54 +20,73 @@