Skip to content

Commit

Permalink
fix: incorrect locale in Korean for TimePicker #29536 (#29540)
Browse files Browse the repository at this point in the history
* fix: incorrect locale in Korean for TimePicker #29536

* fix: incorrect locale in Korean for TimePicker #29536
  • Loading branch information
minsooshin committed Feb 28, 2021
1 parent 727b337 commit 1f1c57c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -153369,7 +153369,7 @@ exports[`Locale Provider should display the text as ko 1`] = `
>
<input
autocomplete="off"
placeholder="날짜 선택"
placeholder="시간 선택"
readonly=""
size="10"
title=""
Expand Down
2 changes: 1 addition & 1 deletion components/time-picker/locale/ko_KR.tsx
@@ -1,7 +1,7 @@
import { TimePickerLocale } from '../index';

const locale: TimePickerLocale = {
placeholder: '날짜 선택',
placeholder: '시간 선택',
};

export default locale;

0 comments on commit 1f1c57c

Please sign in to comment.