diff --git a/src/lib/shared/flo-properties.ts b/src/lib/shared/flo-properties.ts index 1a1f7c8..ef1da3a 100644 --- a/src/lib/shared/flo-properties.ts +++ b/src/lib/shared/flo-properties.ts @@ -273,7 +273,8 @@ export namespace Properties { let currentValue = this.cell.attr(property.attr); if (currentValue !== undefined && currentValue !== null) { // Remove attr doesn't fire appropriate event. Set default value first as a workaround to schedule DSL resync - this.cell.attr(property.attr, property.defaultValue === undefined ? null : property.defaultValue); + // this.cell.attr(property.attr, property.defaultValue === undefined ? null : property.defaultValue); + this.cell.attr(property.attr, null); this.cell.removeAttr(property.attr); } } else {