Skip to content

Commit 5ec1be3

Browse files
Merge branch 'hotfix/5.27.1'
2 parents 29f02e2 + fbd1fdd commit 5ec1be3

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ keywords:
3535
- elasticsearch
3636
- natural language processing
3737
license: MIT
38-
version: 5.27.0
38+
version: 5.27.1
3939
date-released: '2026-02-02'

frontend/src/app/visualization/wordcloud/wordcloud.component.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,16 @@ export class WordcloudComponent implements OnChanges, OnDestroy {
9797

9898
makeChart(result: MostFrequentWordsResult[]) {
9999
if (!this.asTable) {
100-
const data = this.chartData(result);
100+
const data: ChartData<'wordCloud'> = this.chartData(
101+
result,
102+
) as ChartData<'wordCloud'>;
101103
const options = this.chartOptions(result);
102104

103105
if (this.chart) {
104106
this.chart.data = data;
105107
this.chart.update();
106108
} else {
107-
this.chart = new WordCloudChart('wordCloud', { data, options });
109+
this.chart = new WordCloudChart('wordcloud', { data, options });
108110
}
109111
}
110112
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "textcavator",
3-
"version": "5.27.0",
3+
"version": "5.27.1",
44
"license": "MIT",
55
"scripts": {
66
"postinstall": "yarn install-back && yarn install-front",

0 commit comments

Comments
 (0)