all containers have children, duh.

This commit is contained in:
Jakob Pinterits
2024-07-03 20:04:47 +02:00
parent 00f0392ac2
commit 3da2bbfbdd
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ export abstract class LinearContainer extends ComponentBase {
createElement(): HTMLElement {
let element = document.createElement('div');
element.classList.add('rio-linear-child-container');
element.classList.add('rio-linear-container');
this.helperElement = document.createElement('div');
element.appendChild(this.helperElement);