Skip to content

Commit 17cdf20

Browse files
author
olgakup
committed
fix: ko subscribe box layout
1 parent 6116408 commit 17cdf20

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ type useI18nParams = {
172172
173173
const openSubscirbe = ref(true);
174174
const useI18n = (param: useI18nParams) => {
175-
const _locale = param.locale || "es";
175+
const _locale = param.locale || "ko";
176176
const t = (key: string) => {
177177
if (key.includes(".")) {
178178
const keyOne = key.split(".").shift();

src/libs/layouts/MewSubscribe.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ const { t, locale } = props.useI18n({
493493
});
494494
495495
const stylesDialogWH = computed(() => {
496-
return locale.value === "ru"
496+
return locale.value === "ru" || locale.value === "ko"
497497
? "md:w-[860px] sm:max-h-[560px] md:max-h-[530px]"
498498
: "md:w-[800px] sm:max-h-[512px] ";
499499
});

0 commit comments

Comments
 (0)