You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
that are displayed when we position ourselves in the field are always from the 2023 calendar (current). This is uncomfortable for me because we are doing it for the year 2022, and they can never be acquired after that date. My question is how do you make the 2022 calendar appear? I give you the react code:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
that are displayed when we position ourselves in the field are always from the 2023 calendar (current). This is uncomfortable for me because we are doing it for the year 2022, and they can never be acquired after that date. My question is how do you make the 2022 calendar appear? I give you the react code:
export const Datepicker = (props) => {
return ( <DatePicker
style={{ width: '100%' }}
className="form-control"
locale="es"
peekNextMonth
showYearDropdown
showMonthDropdown
disabledKeyboardNavigation
dateFormat="dd/MM/yyyy"
{...props }
/>
); };
Beta Was this translation helpful? Give feedback.
All reactions