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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View File

@ -82,6 +82,7 @@ class ChatListPage extends BaseListPage {
dataIndex: "organization",
key: "organization",
width: "150px",
fixed: "left",
sorter: true,
...this.getColumnSearchProps("organization"),
render: (text, record, index) => {
@ -165,7 +166,6 @@ class ChatListPage extends BaseListPage {
dataIndex: "user1",
key: "user1",
width: "120px",
fixed: "left",
sorter: true,
...this.getColumnSearchProps("user1"),
render: (text, record, index) => {
@ -181,7 +181,6 @@ class ChatListPage extends BaseListPage {
dataIndex: "user2",
key: "user2",
width: "120px",
fixed: "left",
sorter: true,
...this.getColumnSearchProps("user2"),
render: (text, record, index) => {

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) => {