diff --git a/src/components/grewSearch/GrewHistory.vue b/src/components/grewSearch/GrewHistory.vue index 082a0150..83fb4cd8 100644 --- a/src/components/grewSearch/GrewHistory.vue +++ b/src/components/grewSearch/GrewHistory.vue @@ -160,7 +160,6 @@ export default defineComponent({ }, copyRequest(record: grewHistoryRecord_t) { this.$emit('copied-request', record); - notifyMessage({ message: 'Request copied' }) }, triggerConfirm(method: CallableFunction) { this.confirmDelete = true; diff --git a/src/components/sentence/TagsMenu.vue b/src/components/sentence/TagsMenu.vue index d1b701ac..6e216225 100644 --- a/src/components/sentence/TagsMenu.vue +++ b/src/components/sentence/TagsMenu.vue @@ -137,7 +137,6 @@ export default defineComponent({ this.tags = []; const exportedConll = this.reactiveSentencesObj[this.openTabUser].exportConll(); this.sentence.conlls[this.openTabUser] = exportedConll; - notifyMessage({ message: 'Tags Saved' }); }) .catch((error) => { notifyError({ error: error }); diff --git a/src/pinia/modules/tags/index.ts b/src/pinia/modules/tags/index.ts index a1af00a8..8e117a06 100644 --- a/src/pinia/modules/tags/index.ts +++ b/src/pinia/modules/tags/index.ts @@ -50,7 +50,6 @@ export const useTagsStore = defineStore('tags', { api .removeTag(useProjectStore().name, sampleName, data) .then((response) => { - notifyMessage({ message: 'The tag is removed' }); sentenceBus.emit('tree-update:tags', { sentenceJson: { metaJson: response.data, diff --git a/src/pinia/modules/trees/index.ts b/src/pinia/modules/trees/index.ts index 65bc558b..f0cc7f86 100644 --- a/src/pinia/modules/trees/index.ts +++ b/src/pinia/modules/trees/index.ts @@ -59,7 +59,6 @@ export const useTreesStore = defineStore('trees', { this.sortedSentIds = response.data.sent_ids; this.applyFilterTrees(); this.loading = false; - notifyMessage({ message: `Loaded ${Object.keys(this.trees).length} trees` }); resolve(JSON.parse(JSON.stringify(Object.values(this.trees)))); }) .catch((error) => {