diff --git a/.github/workflows/husky.yml b/.github/workflows/husky.yml
index d291a53f..587254ca 100644
--- a/.github/workflows/husky.yml
+++ b/.github/workflows/husky.yml
@@ -28,5 +28,5 @@ jobs:
node-version: 16
- name: install dependencies
run: pnpm install
- - run: pnpm exec prettier --write .
+ - run: pnpm exec prettier -c .
- run: pnpm exec eslint .
diff --git a/components/charts/WordCloud.vue b/components/charts/WordCloud.vue
index 4d854c2a..1c54188c 100644
--- a/components/charts/WordCloud.vue
+++ b/components/charts/WordCloud.vue
@@ -1,5 +1,20 @@
-
+
+
+
+
+
+ mdi-arrow-right
+
+
+
diff --git a/utils/transformChatData.js b/utils/transformChatData.js
index a86709f6..16205564 100644
--- a/utils/transformChatData.js
+++ b/utils/transformChatData.js
@@ -468,8 +468,9 @@ export class Chat {
});
}
- getAllWords() {
- return this._allWords.then((x) => x.slice(0, this._maxWordsWordCloud));
+ async getAllWords() {
+ let x = await this._allWords;
+ return x.slice(0, this._maxWordsWordCloud);
}
// New method to extract and count emojis, limited to 1000 emojis
diff --git a/utils/translations.js b/utils/translations.js
index c040bc78..77ef4974 100644
--- a/utils/translations.js
+++ b/utils/translations.js
@@ -204,6 +204,9 @@ export const messages = {
downloadResults: "Download Results",
lookingFor: "Looking for",
pdfDownload: "PDF download",
+ excludeWords: "Exclude Words",
+ excludeWordsHint:
+ "Should be space separated list. RegEx is also supported.",
loadingMedia:
"Loading your images, videos and documents",
downloadFreePreviewPDF: "Download free preview PDF",