fix: incorrect locale in Korean for TimePicker #29536 (#29540)

* fix: incorrect locale in Korean for TimePicker #29536

* fix: incorrect locale in Korean for TimePicker #29536
This commit is contained in:
Ted Shin 2021-02-27 22:03:07 -08:00 committed by GitHub
parent 727b3375b6
commit 1f1c57cb1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -153369,7 +153369,7 @@ exports[`Locale Provider should display the text as ko 1`] = `
>
<input
autocomplete="off"
placeholder="날짜 선택"
placeholder="시간 선택"
readonly=""
size="10"
title=""

View File

@ -1,7 +1,7 @@
import { TimePickerLocale } from '../index';
const locale: TimePickerLocale = {
placeholder: '날짜 선택',
placeholder: '시간 선택',
};
export default locale;