|
237 | 237 | // const isEditing = ref(false); |
238 | 238 | const isInit = ref(false); |
239 | 239 | const subProgressStyleValue = ref(['hidden']); |
240 | | - const editorCommonDisplayModeValue = ref<EditorCommonDisplayMode[]>(['collapsed']); |
| 240 | + const editorCommonDisplayModeValue = ref<EditorCommonDisplayMode[]>(['expanded']); |
241 | 241 | const manualSubscriptionsDisplayModeValue = ref<EditorSectionFoldMode[]>(['collapsed']); |
242 | 242 | const editorGroupingModeValue = ref<EditorGroupingMode[]>(['edit-only']); |
243 | 243 |
|
|
275 | 275 | changeAppearanceSetting({ appearanceSetting: data }); |
276 | 276 | }; |
277 | 277 | const editorCommonDisplayModeName = computed(() => { |
278 | | - return t(`moreSettingPage.editorDisplayMode.${editorCommonDisplayModeValue.value[0] || 'collapsed'}`); |
| 278 | + return t(`moreSettingPage.editorDisplayMode.${editorCommonDisplayModeValue.value[0] || 'expanded'}`); |
279 | 279 | }); |
280 | 280 | const editorCommonDisplayModeConfirm = ({ selectedValue }) => { |
281 | | - const editorCommonDisplayMode = selectedValue[0] || 'collapsed'; |
| 281 | + const editorCommonDisplayMode = selectedValue[0] || 'expanded'; |
282 | 282 | const data = { |
283 | 283 | ...appearanceSetting.value, |
284 | 284 | editorCommonDisplayMode, |
|
627 | 627 | awtabBar3.value = appearanceSetting.value.istabBar3 ?? false; |
628 | 628 | hidePublicLinkActionButton.value = appearanceSetting.value.hidePublicLinkActionButton ?? false; |
629 | 629 | subProgressStyleValue.value = [appearanceSetting.value.subProgressStyle]; |
630 | | - editorCommonDisplayModeValue.value = [appearanceSetting.value.editorCommonDisplayMode || 'collapsed']; |
| 630 | + editorCommonDisplayModeValue.value = [appearanceSetting.value.editorCommonDisplayMode || 'expanded']; |
631 | 631 | manualSubscriptionsDisplayModeValue.value = [appearanceSetting.value.manualSubscriptionsDisplayMode || 'collapsed']; |
632 | 632 | editorGroupingModeValue.value = [appearanceSetting.value.editorGroupingMode || 'edit-only']; |
633 | 633 | // SimpleSwitch.value = isSimpleMode.value; |
|
0 commit comments