Skip to content

Commit f9bbcdb

Browse files
committed
Use lowercase in bookmarks
1 parent ecb11c6 commit f9bbcdb

5 files changed

Lines changed: 10 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.3.3.0
2+
### Visual changes:
3+
* Fix bug with bookmarks
4+
15
## 2.3.2.0
26
### Visual changes:
37
* Fix color reassignment

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "powerbi-visuals-wordcloud",
3-
"version": "2.3.2.0",
3+
"version": "2.3.3.0",
44
"description": "Word Cloud is a visual representation of word frequency and value. Use it to get instant insight into the most important terms in a set.",
55
"repository": {
66
"type": "git",

pbiviz.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"visual": {
33
"name": "WordCloud",
4-
"displayName": "WordCloud 2.3.2.0",
4+
"displayName": "WordCloud 2.3.3.0",
55
"guid": "WordCloud1447959067750",
66
"visualClassName": "WordCloud",
7-
"version": "2.3.2.0",
7+
"version": "2.3.3.0",
88
"description": "Word Cloud is a visual representation of word frequency and value. Use it to get instant insight into the most important terms in a set.",
99
"supportUrl": "https://community.powerbi.com",
1010
"gitHubUrl": "https://github.com/Microsoft/PowerBI-visuals-WordCloud"

src/behavior.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export class WordCloudBehavior {
4040
ids.forEach((selection: ISelectionId) => {
4141
getDataPoints().forEach((dataPoint: WordCloudDataPoint) => {
4242
if (dataPoint.selectionIds.find((id: ISelectionId) => id.equals(selection))){
43-
this.selectedWords.add(dataPoint.text);
43+
this.selectedWords.add(dataPoint.text.toLocaleLowerCase());
4444
}
4545
});
4646
});

0 commit comments

Comments
 (0)