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
const customMonthOrder: number[] = [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 0, 1]; // March to February
// Get the default full month names
const defaultMonthNames: string[] = jaLocale.months as string[];
// Create an array of full month names in the custom order
const customMonthNames: string[] = customMonthOrder.map(index => defaultMonthNames[index]);
// Create an array of short month names in the custom order
const customMonthShortNames: string[] = customMonthNames.map(month => month.slice(0, 3)); // Take the first 3 characters as short names
// Create the custom locale object
const customLocale = {
...jaLocale,
months: customMonthNames,
monthsShort: customMonthShortNames,
};
// Define the custom locale
defineLocale('ja-custom', customLocale);
in this scenario label are change but value sequnce still as it's if i was select month 2 and input field select 12 month so what is the issue ??
The content you are editing has changed. Please copy your edits and refresh the page.
in this scenario label are change but value sequnce still as it's if i was select month 2 and input field select 12 month so what is the issue ??
Tasks
The text was updated successfully, but these errors were encountered: