Skip to content

Commit

Permalink
Merge pull request #696 from codeforpdx/689/resize-documents-columns
Browse files Browse the repository at this point in the history
resize document columns for preview, share, and delete
  • Loading branch information
oddwili authored Nov 20, 2024
2 parents 6b37f9a + d899149 commit d14f318
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/Documents/DocumentsDesktop.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ const DocumentsDesktop = ({ documents, handlers }) => {
const location = useLocation();

const columnTitlesArray = [
{ field: 'Name', minWidth: 120, flex: 1, headerAlign: 'center', align: 'center' },
{ field: 'Type', minWidth: 120, flex: 1, headerAlign: 'center', align: 'center' },
{ field: 'Description', minWidth: 120, flex: 1, headerAlign: 'center', align: 'center' },
{ field: 'Upload Date', minWidth: 120, flex: 1, headerAlign: 'center', align: 'center' },
{ field: 'Expiration Date', minWidth: 120, flex: 1, headerAlign: 'center', align: 'center' },
{ field: 'Name', minWidth: 120, flex: 3, headerAlign: 'center', align: 'center' },
{ field: 'Type', minWidth: 120, flex: 2, headerAlign: 'center', align: 'center' },
{ field: 'Description', minWidth: 120, flex: 3, headerAlign: 'center', align: 'center' },
{ field: 'Upload Date', minWidth: 120, flex: 2, headerAlign: 'center', align: 'center' },
{ field: 'Expiration Date', minWidth: 120, flex: 2, headerAlign: 'center', align: 'center' },
{
field: 'Preview',
minWidth: 100,
Expand Down

0 comments on commit d14f318

Please sign in to comment.