Enable joining and linking aggregate datasources
This commit is contained in:
parent
df2c0d85e6
commit
e9efe5d3a9
@ -137,7 +137,7 @@ export default {
|
||||
|
||||
this.datasources.forEach(({ step }, index) => {
|
||||
Object.entries(step).forEach(([kind, { name }]) => {
|
||||
if (['load', 'group', 'join'].includes(kind) && index !== this.index) {
|
||||
if (['load', 'aggregate', 'join'].includes(kind) && index !== this.index) {
|
||||
options.push({ value: name || `${index}`, text: name || `${index}` })
|
||||
}
|
||||
})
|
||||
|
||||
@ -137,7 +137,7 @@ export default {
|
||||
|
||||
this.datasources.forEach(({ step }, index) => {
|
||||
Object.entries(step).forEach(([kind, { name }]) => {
|
||||
if (['load', 'group'].includes(kind)) {
|
||||
if (['load', 'aggregate'].includes(kind)) {
|
||||
options.push({ value: name || `${index}`, text: name || `${index}` })
|
||||
}
|
||||
})
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user