Skip to content

Commit

Permalink
carto: fetchLayerData to support columns prop for query sources (#8412)
Browse files Browse the repository at this point in the history
  • Loading branch information
zbigg authored Jan 17, 2024
1 parent 64c4a01 commit 69f2c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/carto/src/api/maps-api-common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const MAP_TYPES = {
RASTER: 'raster'
} as const;
export type MapType = ValuesOf<typeof MAP_TYPES>;
export const COLUMNS_SUPPORT: MapType[] = [MAP_TYPES.TABLE];
export const COLUMNS_SUPPORT: MapType[] = [MAP_TYPES.QUERY, MAP_TYPES.TABLE];
export const GEO_COLUMN_SUPPORT: MapType[] = [MAP_TYPES.QUERY, MAP_TYPES.TABLE];

// AVAILABLE FORMATS
Expand Down

0 comments on commit 69f2c86

Please sign in to comment.