Skip to content

Commit

Permalink
refactor: add 'show' property to attrTip for improved visibility in A…
Browse files Browse the repository at this point in the history
…ttrCard
  • Loading branch information
lisonge committed Nov 9, 2024
1 parent 97f69de commit 230410b
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/views/snapshot/AttrCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,18 @@ const attrTip = computed<AttrTipMap>(() => {
_id: {
desc: `虚拟属性(真机不可用):生成快照访问节点顺序`,
type: 'info',
show: true,
},
_pid: {
desc: `虚拟属性(真机不可用):父节点的 _id`,
type: 'info',
show: true,
},
depth: {
desc: `使用此属性在某些应用上可能造成无限节点错误`,
type: 'info',
show: true,
},
_pid: { desc: `虚拟属性(真机不可用):父节点的 _id`, type: 'info' },
depth: { desc: `使用此属性在某些应用上可能造成无限节点错误`, type: 'info' },
id: {
desc: `可快速查找`,
type: 'quickFind',
Expand Down

0 comments on commit 230410b

Please sign in to comment.