Enable joining and linking aggregate datasources

This commit is contained in:
Jože Fortun
2022-12-22 10:59:35 +01:00
parent df2c0d85e6
commit e9efe5d3a9
2 changed files with 2 additions and 2 deletions
@@ -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}` })
}
})