3
0

Enable joining and linking aggregate datasources

This commit is contained in:
Jože Fortun 2022-12-19 12:35:50 +01:00
parent df2c0d85e6
commit e9efe5d3a9
2 changed files with 2 additions and 2 deletions

View File

@ -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}` })
}
})

View File

@ -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}` })
}
})