mirror of https://github.com/fantasticit/think.git
fix:add user dropdown click event && css
This commit is contained in:
parent
20659d377c
commit
e2c09a0c21
|
@ -0,0 +1,7 @@
|
|||
.userTable {
|
||||
:global {
|
||||
[class$='-pagination-outer'] {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -26,6 +26,8 @@ import { IsOnMobile } from 'hooks/use-on-mobile';
|
|||
import { useToggle } from 'hooks/use-toggle';
|
||||
import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
||||
|
||||
import styles from './index.module.scss';
|
||||
|
||||
interface IProps {
|
||||
wikiId: string;
|
||||
documentId: string;
|
||||
|
@ -101,7 +103,12 @@ export const DocumentCollaboration: React.FC<IProps> = ({ wikiId, documentId, di
|
|||
error={error}
|
||||
loadingContent={<Spin />}
|
||||
normalContent={() => (
|
||||
<Table dataSource={users} size="small" pagination>
|
||||
<Table
|
||||
dataSource={users}
|
||||
className={styles.userTable}
|
||||
size="small"
|
||||
pagination={{ popoverPosition: 'topLeft', popoverZIndex: 1061 }}
|
||||
>
|
||||
<Column title="用户名" dataIndex="user.name" key="name" />
|
||||
<Column
|
||||
title="是否可读"
|
||||
|
@ -211,6 +218,7 @@ export const DocumentCollaboration: React.FC<IProps> = ({ wikiId, documentId, di
|
|||
</>
|
||||
) : (
|
||||
<Dropdown
|
||||
stopPropagation={true}
|
||||
visible={visible}
|
||||
onVisibleChange={toggleVisible}
|
||||
trigger="click"
|
||||
|
|
503
pnpm-lock.yaml
503
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue