This commit is contained in:
zsviczian
2025-12-01 11:24:23 +00:00
parent 5760c2b30d
commit c93688226f
2 changed files with 2 additions and 5 deletions

View File

@@ -1597,10 +1597,7 @@ export const actionChangeContainerBehavior = register<
label: "labels.container", label: "labels.container",
trackEvent: false, trackEvent: false,
perform: (elements, appState, value, app) => { perform: (elements, appState, value, app) => {
invariant( invariant(value, "actionChangeContainerBehavior: value must be defined");
value,
"actionChangeContainerBehavior: value must be defined",
);
const elementsMap = app.scene.getNonDeletedElementsMap(); const elementsMap = app.scene.getNonDeletedElementsMap();
let selected = getSelectedElements(elements, appState, { let selected = getSelectedElements(elements, appState, {
includeBoundTextElement: true, includeBoundTextElement: true,

View File

@@ -2470,4 +2470,4 @@ export const growingContainerIcon = createIcon(
<path d="M9 21h1" /> <path d="M9 21h1" />
</g>, </g>,
tablerIconProps, tablerIconProps,
); );