|
@@ -389,7 +389,7 @@ function jumpToAddNewVisitors(row) {
|
|
|
|
|
|
function returnImageAddress(rows) {
|
|
|
const row = routingInfos[rows.path.replace('/', '')]
|
|
|
- return row.homeImage
|
|
|
+ return row && row.homeImage
|
|
|
}
|
|
|
|
|
|
function expandAndCollapseClick() {
|
|
@@ -408,7 +408,7 @@ function processForms() {
|
|
|
|
|
|
commonExpressionsHaveBeenNodded.value = allFormList.filter(item =>
|
|
|
!selectedForm.some(arrItem => arrItem.path === item.path)
|
|
|
- )
|
|
|
+ ).filter(item => item.path !== '/biReport')
|
|
|
}
|
|
|
|
|
|
function getVisitorPlan() {
|