Skip to content
Snippets Groups Projects
Commit 57ef8408 authored by insert's avatar insert
Browse files

Fix: Certain languages not loading due to bad map.

parent 002d565b
No related merge requests found
......@@ -160,7 +160,7 @@ function Locale({ children, locale }: Props) {
dayjs["sameElse"] = DATE_FORMATS[date];
Object.keys(dayjs)
.filter((k) => k !== "defaults")
.filter((k) => typeof dayjs[k] === 'string')
.forEach(
(k) =>
(dayjs[k] = dayjs[k].replace(
......
......@@ -36,6 +36,7 @@ export default function TextAreaAutoSize(props: TextAreaAutoSizeProps) {
forceFocus,
children,
as,
onChange,
...textAreaProps
} = props;
const line = lineHeight ?? DEFAULT_LINE_HEIGHT;
......@@ -107,6 +108,10 @@ export default function TextAreaAutoSize(props: TextAreaAutoSizeProps) {
style={{ height }}
hideBorder={hideBorder}
lineHeight={lineHeight}
onChange={ev => {
onChange && onChange(ev);
}}
{...textAreaProps}
/>
);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment