|
@@ -202,7 +202,7 @@ async function getWillActivityData() {
|
|
|
|
|
|
|
|
for (let hashId in activityLstMap) {
|
|
for (let hashId in activityLstMap) {
|
|
|
let item = activityLstMap[hashId];
|
|
let item = activityLstMap[hashId];
|
|
|
- if (item.name.indexOf(indexName) != -1 || item.activityId == activityId) {
|
|
|
|
|
|
|
+ if ((indexName.length > 0 && item.name.indexOf(indexName) != -1) || item.activityId == activityId) {
|
|
|
activityData = item;
|
|
activityData = item;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|