From bda28e04043fce1f96f11c50eb561e42559b7e72 Mon Sep 17 00:00:00 2001 From: Pratik Kumar Date: Thu, 6 Jul 2023 15:10:37 +0530 Subject: [PATCH] fix(component): new page button in all page (#3053) --- packages/component/src/components/page-list/all-page.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/component/src/components/page-list/all-page.tsx b/packages/component/src/components/page-list/all-page.tsx index 49513adb94..45edeff6a1 100644 --- a/packages/component/src/components/page-list/all-page.tsx +++ b/packages/component/src/components/page-list/all-page.tsx @@ -62,11 +62,17 @@ const AllPagesHead = ({ key: 'createDate', content: t['Created'](), proportion: 0.1, + tableCellStyle: { + width: '80px', + } satisfies CSSProperties, }, { key: 'updatedDate', content: t['Updated'](), proportion: 0.1, + tableCellStyle: { + width: '80px', + } satisfies CSSProperties, }, { key: 'unsortable_action', @@ -80,7 +86,7 @@ const AllPagesHead = ({ showWhen: () => !isPublicWorkspace, sortable: false, tableCellStyle: { - minWidth: '130px', + width: '130px', } satisfies CSSProperties, styles: { justifyContent: 'flex-end',