@@ -43,6 +43,7 @@ export const TagsInput: FC<Props> = (props: Props) => {
event.preventDefault();
// fix: https://redmine.weseek.co.jp/issues/140689
+ // "event.isComposing" is not supported
const isComposing = event.nativeEvent.isComposing;
if (isComposing) {
return;
@@ -149,6 +149,7 @@ const SearchTypeahead: ForwardRefRenderFunction<IFocusable, Props> = (props: Pro
const keyDownHandler = useCallback((event: KeyboardEvent) => {
if (event.key === 'Enter') {
// do nothing while composing
if (event.nativeEvent.isComposing) {
}