Skip to content

Commit

Permalink
fix(core): deleted tags property cannot be added back
Browse files Browse the repository at this point in the history
  • Loading branch information
pengx17 committed Nov 10, 2024
1 parent e2f281a commit c2af39d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export const CreatePropertyMenuItems = ({
name,
type: option.type,
index: propertyList.indexAt(at),
isDeleted: false,
});
onCreated?.(newProperty);
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export const DocPropertySidebar = () => {
name,
type: option.type,
index: propertyList.indexAt('after'),
isDeleted: false,
});
setNewPropertyId(newProperty.id);
track.doc.sidepanel.property.addProperty({
Expand Down

0 comments on commit c2af39d

Please sign in to comment.