Skip to content

Commit 67bde66

Browse files
committed
Request colocs with orphan signals
1 parent afcf5ce commit 67bde66

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/components/DataTable/DataTable.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ const loadData = async () => {
287287
try {
288288
if ([locuszoomPage, multizoomPage].includes(cpn)) {
289289
if(!appStore[cpn].colocDataReady) {
290-
const colocURL = `${URLS.COLOC_DATA}/${colocID}`
290+
const colocURL = `${URLS.COLOC_DATA}/${colocID}?include_orphans=1`
291291
await loadColocData(cpn, colocURL)
292292
}
293293
const signal1 = appStore[cpn].colocData.signal1

src/stores/AppStore.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,9 @@ export const useAppStore = defineStore('appStore', {
126126
const p = this[parentKey].filters[key]
127127
if(p?.toString().length > 0) url.searchParams.set(value, p)
128128
})
129+
130+
// Always allow orphan signals to be included
131+
url.searchParams.set('include_orphans', 1)
129132
},
130133

131134
buildLZdataTableURL(urlPath, signal1, signal2) {

0 commit comments

Comments
 (0)