Fix DisappearingTimerSelect on Windows
This commit is contained in:
parent
7c86f02c7e
commit
daf66f33da
2 changed files with 33 additions and 21 deletions
|
@ -2,7 +2,7 @@
|
|||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import type { ChangeEvent } from 'react';
|
||||
import React from 'react';
|
||||
import React, { useCallback } from 'react';
|
||||
import classNames from 'classnames';
|
||||
|
||||
export type Option = Readonly<{
|
||||
|
@ -35,9 +35,12 @@ export const Select = React.forwardRef(function SelectInner(
|
|||
}: PropsType,
|
||||
ref: React.Ref<HTMLSelectElement>
|
||||
): JSX.Element {
|
||||
const onSelectChange = (event: ChangeEvent<HTMLSelectElement>) => {
|
||||
onChange(event.target.value);
|
||||
};
|
||||
const onSelectChange = useCallback(
|
||||
(event: ChangeEvent<HTMLSelectElement>) => {
|
||||
onChange(event.target.value);
|
||||
},
|
||||
[onChange]
|
||||
);
|
||||
|
||||
return (
|
||||
<div className={classNames(['module-select', moduleClassName])}>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue