We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13f4486 commit 6689a89Copy full SHA for 6689a89
components/Gestion/FavoriteForm.vue
@@ -81,9 +81,8 @@
81
82
// Tags validation
83
const tags: number[] = this.selectedTags.map((tag: SelectedTag) => tag.tag_id);
84
- const isTagsValid = tags.length !== 0;
85
86
- if (isValid && isTagsValid) {
+ if (isValid) {
87
88
const request: UpdateConfigurationRequest | CreateConfigurationRequest = {
89
name: this.form.name,
components/Panel/Item/FilterPanel.vue
@@ -372,7 +372,7 @@
372
this.$displayError("Vos favoris n'ont pas pu être chargé");
373
}
374
} else {
375
- this.$displayWarning('Vous devez ajouter au moins un tag afin de créer votre favori')
+ this.$displayWarning('Un problème est survenu lors de la création du favori.')
376
377
378
0 commit comments