Closed dickinson0718 closed 5 months ago
There was a runtime error in one of the wathcers in FrontBackStyle.vue
caused by the following
if-statement:
if (Object.hasOwn(opt, 'dashArray')) {
const arr = opt.dashArray!
}
Fix the issue by changing the above if-statement to
if (Array.isArray(opt.dashArray)) {
const arr = opt.dashArray
}
1) Create a circle, 2) select it, 3) open the back panel, do nothing, 4) open the front by clicking on the icon (immediately to the right of the "Foreground Style" tool tip
I couldn't get the front panel to open (and after that back panel won't open again).
Here is the view after step 3 but before step 4.