fix: isBindableElement to affirm frames (#6900)

fix isBindableElement to affirm frames
This commit is contained in:
Igor Berlenko 2023-09-16 05:15:06 +08:00 committed by GitHub
parent a34216f9fc
commit 1f94f204dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -121,6 +121,7 @@ export const isBindableElement = (
element.type === "ellipse" ||
element.type === "image" ||
element.type === "embeddable" ||
element.type === "frame" ||
(element.type === "text" && !element.containerId))
);
};