diff --git a/projects/angular-gridster2/src/lib/gridsterItem.component.ts b/projects/angular-gridster2/src/lib/gridsterItem.component.ts
index a8b55543..831ca4d3 100644
--- a/projects/angular-gridster2/src/lib/gridsterItem.component.ts
+++ b/projects/angular-gridster2/src/lib/gridsterItem.component.ts
@@ -58,7 +58,7 @@ export class GridsterItemComponent implements OnDestroy, OnChanges, GridsterItem
}
ngOnChanges(changes: SimpleChanges): void {
- if (changes['item']) {
+ if (changes.item) {
this.updateOptions();
if (!this.init) {
diff --git a/src/app/sections/trackBy/trackBy.component.html b/src/app/sections/trackBy/trackBy.component.html
index 5f0bbc7b..0fe00e7e 100644
--- a/src/app/sections/trackBy/trackBy.component.html
+++ b/src/app/sections/trackBy/trackBy.component.html
@@ -7,15 +7,22 @@