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 094698c commit 9a39571Copy full SHA for 9a39571
media/main.js
@@ -22,7 +22,7 @@
22
});
23
24
function fieldValidation() {
25
- if (project.value === "" || solution.value === "" || filePath.value === "") {
+ if (project.value === "" || solution.value === "") {
26
buttonCreateProject.disabled = true;
27
} else {
28
buttonCreateProject.disabled = false;
@@ -35,8 +35,8 @@
35
36
37
project.addEventListener('change', () => {
38
- fieldValidation();
39
solution.value = project.value;
+ fieldValidation();
40
41
42
solution.addEventListener('keyup', () => {
0 commit comments