Improve UI.

This commit is contained in:
Yang Luo
2021-12-29 20:50:49 +08:00
parent 519fd655cf
commit c1cd187558
9 changed files with 16 additions and 28 deletions

View File

@ -20,7 +20,6 @@ import * as Setting from "./Setting";
import * as SyncerBackend from "./backend/SyncerBackend";
import i18next from "i18next";
import BaseListPage from "./BaseListPage";
import * as ProviderBackend from "./backend/ProviderBackend";
class SyncerListPage extends BaseListPage {
@ -112,7 +111,7 @@ class SyncerListPage extends BaseListPage {
title: i18next.t("general:Created time"),
dataIndex: 'createdTime',
key: 'createdTime',
width: '180px',
width: '160px',
sorter: true,
render: (text, record, index) => {
return Setting.getFormattedDate(text);
@ -187,7 +186,7 @@ class SyncerListPage extends BaseListPage {
title: i18next.t("syncer:Sync interval"),
dataIndex: 'syncInterval',
key: 'syncInterval',
width: '120px',
width: '130px',
sorter: true,
...this.getColumnSearchProps('syncInterval'),
},