Posts by Gabriel Carvalho • 1 point
2 posts
-
0
votes2
answers391
viewsA: visible or invisible input when selecting checkbox
This is because you check if the value of #Escort is 'yes', if it is anything else it is invisible. You can perform a checkbox event by javascript instead of setting its attribute and #Escort value.…
-
0
votes2
answers51
viewsA: Property . map cannot access the object correctly
You are mapping an array of objects, each object is mapped inside "item", so you are trying to access the _url inside the first object, but it only exists inside the second, it is where the error is…