Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 567 | Rev 583 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 567 Rev 572
Línea 13... Línea 13...
13
 
13
 
14
    /**
14
    /**
15
     * Check if there are options to answer
15
     * Check if there are options to answer
16
     * @returns 
16
     * @returns 
17
     */
17
     */
18
    const validateSection = () => {
18
     const validateSection = () => {
19
        setErrors([]);
19
        setErrors([]);
20
        let formValid = true;
20
        let formValid = true;
-
 
21
        let messages = [];
21
        let messages = [];
22
        if (section.type == 'multiple') {
22
        section.options.map((option) => {
23
            section.options.map((option) => {
23
            //Validate if the answer is empty
24
                //Validate if the answer is empty
-
 
25
                if (!option.answer || option.answer.length == 0) {
-
 
26
                    formValid = false;
-
 
27
                }
-
 
28
            });
-
 
29
        } else {
24
            if (!option.answer || option.answer.length == 0) {
30
            if (!section.answer || section.answer.length == 0) {
25
                formValid = false;
31
                formValid = false;
26
            }
32
            }
27
        });
33
        }
28
        setErrors(messages);
34
        setErrors(messages);
29
        return formValid;
35
        return formValid;
Línea 30... Línea 36...
30
    }
36
    }