|
@@ -292,7 +292,7 @@ function processForms() {
|
|
)
|
|
)
|
|
|
|
|
|
commonExpressionsHaveBeenNodded.value = allFormList.filter(item =>
|
|
commonExpressionsHaveBeenNodded.value = allFormList.filter(item =>
|
|
- selectedForm.some(arrItem => arrItem.path !== item.path)
|
|
|
|
|
|
+ !selectedForm.some(arrItem => arrItem.path === item.path)
|
|
)
|
|
)
|
|
}
|
|
}
|
|
|
|
|
|
@@ -326,7 +326,7 @@ function getAllData() {
|
|
if (areYouRequesting.value) {
|
|
if (areYouRequesting.value) {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- displayFrequentlyUsedContacts.value = useInfo.modularList.filter(item => item.path === 'contacts').length
|
|
|
|
|
|
+ displayFrequentlyUsedContacts.value = useInfo.modularList.filter(item => item.path === '/contacts').length
|
|
areYouRequesting.value = true
|
|
areYouRequesting.value = true
|
|
Promise.all([
|
|
Promise.all([
|
|
getVisitorPlan(),
|
|
getVisitorPlan(),
|