diff --git a/gamification-crowdin-webapp/src/main/webapp/vue-app/connectorEventExtensions/components/CrowdinEventForm.vue b/gamification-crowdin-webapp/src/main/webapp/vue-app/connectorEventExtensions/components/CrowdinEventForm.vue index b30683e..ce12818 100644 --- a/gamification-crowdin-webapp/src/main/webapp/vue-app/connectorEventExtensions/components/CrowdinEventForm.vue +++ b/gamification-crowdin-webapp/src/main/webapp/vue-app/connectorEventExtensions/components/CrowdinEventForm.vue @@ -56,7 +56,7 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. width="28"> {{ item.name }} @@ -70,7 +70,7 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. width="28"> - {{ item.name }} +   {{ item.name }} @@ -335,15 +335,19 @@ export default { this.selectedLanguages = []; if (this.anyLanguage) { this.readySelection(); + } else { + document.dispatchEvent(new CustomEvent('event-form-unfilled')); } }, - projectSelected() { + projectSelected(projectId) { this.directories = []; this.selectedDirectories = []; this.selectedLanguages = []; this.allowOnlyHuman = true; this.offset = 0; this.anyDir = true; + this.anyLanguage = true; + this.selected = this.projects.find(obj => obj.id === projectId); this.readySelection(); }, changeRewardPerWords(rewardPerWords) {