Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 9x 9x 9x 13x 9x 9x | export function enableEndDateValidation() {
    const startDateInput = document.getElementById("startDate");
    const endDateInput = document.getElementById("endDate");
 
    // Function to update the min attribute of the end date input
    const updateEndDateMin = () => {
        endDateInput.min = startDateInput.value;
    };
 
    // Add event listener to the start date input field
    startDateInput.addEventListener("change", updateEndDateMin);
 
    // Call updateEndDateMin initially
    updateEndDateMin();
}
  |