Skip to content

Commit

Permalink
sorting (#366)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmingles committed Apr 10, 2024
1 parent 3e7f18d commit bf28a76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/ui/src/js/src/elements/useListViewProps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ export function useListViewProps<T>(props: SerializedListViewEventProps & T) {
...otherProps
} = props;

const serializedOnChange = useSelectionEventCallback(onChange);
const serializedOnFocus = useFocusEventCallback(onFocus);
const serializedOnBlur = useFocusEventCallback(onBlur);
const serializedOnKeyDown = useKeyboardEventCallback(onKeyDown);
const serializedOnKeyUp = useKeyboardEventCallback(onKeyUp);
const serializedOnChange = useSelectionEventCallback(onChange);
const serializedOnSelectionChange =
useSelectionEventCallback(onSelectionChange);

Expand Down

0 comments on commit bf28a76

Please sign in to comment.