fix: Embeddables lost stroke color option in element properties after #9996 (#10541)

Add 'embeddable' type to comparisons
This commit is contained in:
zsviczian
2025-12-19 18:23:09 +01:00
committed by GitHub
parent 859207b8bc
commit 071b17a217
+2 -1
View File
@@ -16,7 +16,8 @@ export const hasStrokeColor = (type: ElementOrToolType) =>
type === "freedraw" ||
type === "arrow" ||
type === "line" ||
type === "text";
type === "text" ||
type === "embeddable";
export const hasStrokeWidth = (type: ElementOrToolType) =>
type === "rectangle" ||