Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
g122622 committed Feb 18, 2024
1 parent b93ffeb commit 851b303
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/FileMgr/FileMgr.vue
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,11 @@ const tryToGetAndApplyViewOptions = async () => {
return
}
try {
console.log('[3]-1')
console.log(await props.adapter.getExtraMeta(currentFileTable.value.selfKey, 'viewOptions'))
console.log((await props.adapter.getExtraMeta(currentFileTable.value.selfKey, 'viewOptions')).toString())
const obj = JSON.parse((await props.adapter.getExtraMeta(currentFileTable.value.selfKey, 'viewOptions')).toString())
console.log('[3]-2')
if (obj) {
viewOptions.value = obj
}
Expand Down

0 comments on commit 851b303

Please sign in to comment.