fix(update-properties-handler): fix typo

This commit is contained in:
Philipp Fromme 2018-01-31 18:21:16 +01:00
parent ce791b8e17
commit f047fefd89
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ function setProperties(businessObject, properties) {
if (key !== DI) {
businessObject.set(key, value);
} else {
// only update, if businessObject.id exists
// only update, if businessObject.di exists
if (businessObject.di) {
setDiProperties(businessObject.di, value);
}