Skip to content

Commit

Permalink
adjust manage templates table width
Browse files Browse the repository at this point in the history
  • Loading branch information
mgtennant committed Jun 28, 2024
1 parent 17bb656 commit 64e5514
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,14 +116,14 @@ const TemplateInfoTable: React.FC<TemplateInfoTableProps> = ({ documentType, ref
cell: (info) => <input value={info.getValue()} className="form-control readonlyInput" readOnly />,
header: () => 'Doc No.',
enableSorting: true,
meta: { customCss: { width: '5%' } },
meta: { customCss: { width: '8%' } },
}),
columnHelper.accessor('file_name', {
id: 'file_name',
cell: (info) => <input value={info.getValue()} className="form-control readonlyInput" readOnly />,
header: () => 'Template Name',
enableSorting: true,
meta: { customCss: { width: '50%' } },
meta: { customCss: { width: '47%' } },
}),
columnHelper.accessor('update_timestamp', {
id: 'update_timestamp',
Expand Down

0 comments on commit 64e5514

Please sign in to comment.