feat: fix table sticky columns on chat and message pages (#1917)

This commit is contained in:
907997375
2023-06-01 21:02:21 +08:00
committed by GitHub
parent 11f3af1ede
commit 9147225956
2 changed files with 2 additions and 4 deletions

View File

@ -78,6 +78,7 @@ class MessageListPage extends BaseListPage {
dataIndex: "organization",
key: "organization",
width: "150px",
fixed: "left",
sorter: true,
...this.getColumnSearchProps("organization"),
render: (text, record, index) => {
@ -119,7 +120,6 @@ class MessageListPage extends BaseListPage {
dataIndex: "chat",
key: "chat",
width: "120px",
fixed: "left",
sorter: true,
...this.getColumnSearchProps("chat"),
render: (text, record, index) => {
@ -135,7 +135,6 @@ class MessageListPage extends BaseListPage {
dataIndex: "author",
key: "author",
width: "120px",
fixed: "left",
sorter: true,
...this.getColumnSearchProps("author"),
render: (text, record, index) => {