Skip to content

Commit 9ea2299

Browse files
committed
Improve site list
1 parent d47def8 commit 9ea2299

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

web/src/SiteListPage.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ class SiteListPage extends BaseListPage {
129129
title: i18next.t("general:Tag"),
130130
dataIndex: "tag",
131131
key: "tag",
132-
width: "120px",
132+
width: "140px",
133133
sorter: (a, b) => a.tag.localeCompare(b.tag),
134134
},
135135
{
@@ -396,7 +396,8 @@ class SiteListPage extends BaseListPage {
396396
params.pagination = {current: 1, pageSize: 10};
397397
}
398398
this.setState({loading: true});
399-
SiteBackend.getSites(this.props.account.name, params.pagination.current, params.pagination.pageSize, field, value, sortField, sortOrder)
399+
// SiteBackend.getSites(this.props.account.name, params.pagination.current, params.pagination.pageSize, field, value, sortField, sortOrder)
400+
SiteBackend.getSites(this.props.account.name, "", "", field, value, sortField, sortOrder)
400401
.then((res) => {
401402
this.setState({
402403
loading: false,

0 commit comments

Comments
 (0)