diff --git a/js/common/model/TermCreator.js b/js/common/model/TermCreator.js index 1e7d8226..b07eeb2f 100644 --- a/js/common/model/TermCreator.js +++ b/js/common/model/TermCreator.js @@ -400,7 +400,9 @@ define( function( require ) { // ORDER IS VERY IMPORTANT HERE! var cell = this.plate.removeTerm( term ); this.termsOnPlate.remove( term ); - term.onPlateProperty.value = false; + if ( !term.onPlateProperty.isDisposed ) { + term.onPlateProperty.value = false; + } return cell; },