diff --git a/package.json b/package.json index 4c111f54fd..7e558f33c2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "calckey", - "version": "12.119.0-calc.13-rc.3", + "version": "12.119.0-calc.13-rc.4", "codename": "aqua", "repository": { "type": "git", diff --git a/packages/client/src/components/MkTutorialDialog.vue b/packages/client/src/components/MkTutorialDialog.vue index d85e217241..607006766b 100644 --- a/packages/client/src/components/MkTutorialDialog.vue +++ b/packages/client/src/components/MkTutorialDialog.vue @@ -33,9 +33,8 @@

{{ i18n.ts._tutorial.step2_1 }}

{{ i18n.ts._tutorial.step2_2 }}

- +
- {{ i18n.ts.next }}

{{ i18n.ts._tutorial.step3_1 }}

diff --git a/packages/client/src/pages/settings/profile.vue b/packages/client/src/pages/settings/profile.vue index e663e00fdd..8a83abb351 100644 --- a/packages/client/src/pages/settings/profile.vue +++ b/packages/client/src/pages/settings/profile.vue @@ -1,5 +1,9 @@ @@ -78,16 +85,22 @@ import { langmap } from '@/scripts/langmap'; import { definePageMetadata } from '@/scripts/page-metadata'; const profile = reactive({ - name: $i.name, - description: $i.description, - location: $i.location, - birthday: $i.birthday, - lang: $i.lang, - isBot: $i.isBot, - isCat: $i.isCat, - showTimelineReplies: $i.showTimelineReplies, + name: $i?.name, + description: $i?.description, + location: $i?.location, + birthday: $i?.birthday, + lang: $i?.lang, + isBot: $i?.isBot, + isCat: $i?.isCat, + showTimelineReplies: $i?.showTimelineReplies, }); +const props = withDefaults(defineProps<{ + saveButton?: boolean, +}>(), {}); + +let saveButton = $ref(props.saveButton ?? false); + watch(() => profile, () => { save(); }, {