diff --git a/projects/common/models/audio-element.ts b/projects/common/models/audio-element.ts index c80a370b6d851da9c3ba7e21851768550798bf38..70bc57d968a96535a10e0cd040fd1df4b50bb90b 100644 --- a/projects/common/models/audio-element.ts +++ b/projects/common/models/audio-element.ts @@ -29,6 +29,6 @@ export class AudioElement extends UIElement implements PlayerElement { Object.assign(this, serializedElement); Object.assign(this, initPlayerElement(serializedElement)); this.height = serializedElement.height || 90; - this.width = serializedElement.width || 280; + this.width = serializedElement.width || 250; } } diff --git a/projects/common/models/compound-elements/likert-element.ts b/projects/common/models/compound-elements/likert-element.ts index 4142a98b7e202bc244697b0a0ffaf27a60bdc14f..9f5e6f0c2bfe34aa477c79d679b5a0334f0a26e9 100644 --- a/projects/common/models/compound-elements/likert-element.ts +++ b/projects/common/models/compound-elements/likert-element.ts @@ -35,7 +35,7 @@ export class LikertElement extends CompoundElement implements FontElement, Surfa } this.height = serializedElement.height || 200; - this.width = serializedElement.width || 400; + this.width = serializedElement.width || 250; this.backgroundColor = serializedElement.backgroundColor as string || 'transparent'; }