diff --git a/projects/common/models/compound-elements/likert-element.ts b/projects/common/models/compound-elements/likert-element.ts
index 04236cdcdf02ef81813a8cd3e56ae3ffb59240dc..67cb0263bb0c3e14efc3cd91b228ea6b43370533 100644
--- a/projects/common/models/compound-elements/likert-element.ts
+++ b/projects/common/models/compound-elements/likert-element.ts
@@ -1,9 +1,9 @@
-import { InputElementValue, UIElement } from '../uI-element';
+import { CompoundElement, InputElementValue, UIElement } from '../uI-element';
 import { LikertElementRow } from './likert-element-row';
 import { LikertColumn, FontElement, SurfaceUIElement } from '../../interfaces/UIElementInterfaces';
 import { initFontElement, initSurfaceElement } from '../../util/unit-interface-initializer';
 
-export class LikertElement extends UIElement implements FontElement, SurfaceUIElement {
+export class LikertElement extends CompoundElement implements FontElement, SurfaceUIElement {
   rows: LikertElementRow[] = [];
   columns: LikertColumn[] = [];
   firstColumnSizeRatio: number = 5;