mirror of
https://github.com/apache/superset.git
synced 2026-04-20 16:44:46 +00:00
fix(explore): bump superset-ui to 0.16.3 and fix DeckGL bug (#12242)
This commit is contained in:
@@ -17,9 +17,9 @@
|
||||
* under the License.
|
||||
*/
|
||||
export default function transformProps(chartProps) {
|
||||
const { height, datasource, formData, queryData } = chartProps;
|
||||
const { height, datasource, formData, queriesData } = chartProps;
|
||||
const { columnCollection = [], groupby, metrics, url } = formData;
|
||||
const { records, columns } = queryData.data;
|
||||
const { records, columns } = queriesData[0].data;
|
||||
const isGroupBy = groupby.length > 0;
|
||||
|
||||
// When there is a "group by",
|
||||
|
||||
Reference in New Issue
Block a user