Skip to content

Commit 89d8745

Browse files
Merge pull request #315 from KnowageLabs/map-widget-development
Map widget development
2 parents c603633 + 6fcdf94 commit 89d8745

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/modules/documentExecution/dashboard/widget/MapWidget/MapWidgetDataProxy.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,11 @@ const formatMapModelForService = (dashboardId: any, dashboardConfig: IDashboardC
5555
addParametersToData(dataset, dashboardId, dataToSend, associativeResponseSelections)
5656

5757
const datasetWithColumns = widget.layers.find((layer: IMapWidgetLayer) => layer.name === dataset.dsLabel)
58-
5958
for (let i = 0; i < datasetWithColumns.columns.length; i++) {
6059
const column = datasetWithColumns.columns[i]
6160

61+
if (column.deleted) continue
62+
6263
if (column.fieldType === 'MEASURE') {
6364
if (column.type === 'pythonFunction') {
6465
addFunctionColumnToTheMeasuresForThePostData(dataToSend.aggregations.measures, column as any)

0 commit comments

Comments
 (0)