Browse Source

type: fix drag sorting demo typos (#40697)

pull/40698/head
RamonEspinosa 2 years ago
committed by GitHub
parent
commit
9632b36b04
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      components/upload/demo/drag-sorting.tsx

6
components/upload/demo/drag-sorting.tsx

@ -13,12 +13,12 @@ import { Button, Upload } from 'antd';
import type { UploadFile, UploadProps } from 'antd/es/upload/interface';
import React, { useState } from 'react';
interface DragableUploadListItemProps {
interface DraggableUploadListItemProps {
originNode: React.ReactElement<any, string | React.JSXElementConstructor<any>>;
file: UploadFile<any>;
}
const DragableUploadListItem = ({ originNode, file }: DragableUploadListItemProps) => {
const DraggableUploadListItem = ({ originNode, file }: DraggableUploadListItemProps) => {
const { attributes, listeners, setNodeRef, transform, transition, isDragging } = useSortable({
id: file.uid,
});
@ -101,7 +101,7 @@ const App: React.FC = () => {
fileList={fileList}
onChange={onChange}
itemRender={(originNode, file) => (
<DragableUploadListItem originNode={originNode} file={file} />
<DraggableUploadListItem originNode={originNode} file={file} />
)}
>
<Button icon={<UploadOutlined />}>Click to Upload</Button>

Loading…
Cancel
Save