Skip to content

Commit

Permalink
fix(data-warehouse): add catchall for database table tree (#21223)
Browse files Browse the repository at this point in the history
* add all others

* naming
  • Loading branch information
EDsCODE authored Mar 28, 2024
1 parent 68795d0 commit aa67d0d
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,11 @@ export const dataWarehouseSceneLogic = kea<dataWarehouseSceneLogicType>([
acc[table.payload.external_data_source.source_type] = []
}
acc[table.payload.external_data_source.source_type].push(table)
} else {
if (!acc['S3']) {
acc['S3'] = []
}
acc['S3'].push(table)
}
return acc
}, {})
Expand Down

0 comments on commit aa67d0d

Please sign in to comment.