Skip to content

Commit

Permalink
Merge pull request #5538 from gooddata/SHA_master
Browse files Browse the repository at this point in the history
fix: alert didn't work with Location attribute in GEO
  • Loading branch information
scavnickyj authored Nov 5, 2024
2 parents 34afab2 + 93f11f4 commit 1282508
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,10 @@ function collectAllAttributes(insight: IInsight | null | undefined) {
return collectAllAttributesFrom(insight, [BucketNames.ATTRIBUTE]);
}
case "pushpin": {
return collectAllAttributesFrom(insight, [BucketNames.LOCATION]);
//NOTE: For now we want to disable attributes for pushpin insight
// at all because ofg bug https://gooddata.atlassian.net/browse/F1-889
//return collectAllAttributesFrom(insight, [BucketNames.LOCATION]);
return [];
}
default: {
return [];
Expand Down

0 comments on commit 1282508

Please sign in to comment.