删除标记的时候 有markid的时候 传markid 没markid的时候 传id
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2025-07-16 10:20:51 +08:00
parent 1bacf16361
commit 71acbc5f78
1 changed files with 3 additions and 1 deletions

View File

@ -1655,7 +1655,9 @@ export default {
annotation.data.label +
'?'
)
if (annotation.id) {
if (annotation.annotationUID) {
deleteCustomTag(annotation.annotationUID)
}else if (annotation.id) {
deleteCustomTag(annotation.id)
}
}