|
@@ -388,8 +388,8 @@ async function getTaskMapData(activityId) {
|
|
|
let match;
|
|
let match;
|
|
|
while ((match = regex.exec(codeDataStr)) !== null) {
|
|
while ((match = regex.exec(codeDataStr)) !== null) {
|
|
|
try {
|
|
try {
|
|
|
- const id = match[1];
|
|
|
|
|
- const urlObject = JSON.parse(match[2]);
|
|
|
|
|
|
|
+ let id = match[1];
|
|
|
|
|
+ let urlObject = JSON.parse(match[2]);
|
|
|
taskMapObject[id] = urlObject;
|
|
taskMapObject[id] = urlObject;
|
|
|
} catch (error) {
|
|
} catch (error) {
|
|
|
|
|
|