Skip to content

Commit

Permalink
Define normalized entity as: named and associated and complete.
Browse files Browse the repository at this point in the history
  • Loading branch information
jvwong committed Jul 24, 2024
1 parent dda1d77 commit 419ea14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/model/element/entity.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ class Entity extends Element {
normalized(){
// normalized := has a name and is associated
const name = this.syncher.get('name');
return name && this.associated();
return name && this.associated() && this.completed();
}

issues(){
Expand Down

0 comments on commit 419ea14

Please sign in to comment.