|
@@ -386,8 +386,12 @@ export const renderForMoveData = () => {
|
|
extStyleConfigJson = {};
|
|
extStyleConfigJson = {};
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- if (!extStyleConfigJson || !extStyleConfigJson?.[moveData.partIndex]) return;
|
|
|
|
- initSvgId();
|
|
|
|
|
|
+ if (!extStyleConfigJson || !extStyleConfigJson?.[moveData.partIndex]){
|
|
|
|
+ initSvgId();
|
|
|
|
+ return
|
|
|
|
+ } else {
|
|
|
|
+ initSvgId();
|
|
|
|
+ }
|
|
const list = extStyleConfigJson?.[moveData.partIndex];
|
|
const list = extStyleConfigJson?.[moveData.partIndex];
|
|
if (list && Array.isArray(list)) {
|
|
if (list && Array.isArray(list)) {
|
|
console.log("🚀 ~ list", list);
|
|
console.log("🚀 ~ list", list);
|