Skip to content

Commit

Permalink
fix: default val of use_indent (#431)
Browse files Browse the repository at this point in the history
  • Loading branch information
YangFong authored Sep 28, 2024
1 parent 85f7f11 commit 667255b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const useStore = defineStore(`store`, () => {
const toggleCiteStatus = useToggle(isCiteStatus)

// 是否开启段落首行缩进
const isUseIndent = useStorage(addPrefix(`use_indent`), true)
const isUseIndent = useStorage(addPrefix(`use_indent`), false)
const toggleUseIndent = useToggle(isUseIndent)

const output = ref(``)
Expand Down

0 comments on commit 667255b

Please sign in to comment.