Add super connect function

This commit is contained in:
2022-03-19 21:01:33 +08:00
parent 30a785eabb
commit 8d5f2a7dfb
3 changed files with 63 additions and 49 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ class Label {
* 判断是否为相同标签
*/
public equal(label: Label): boolean {
if (this.isDeleted() || label.isDeleted()) return false;
// if (this.isDeleted() || label.isDeleted()) return false;
return this === label || this.id === label.id;
}