Skip to content

Commit

Permalink
Fix for table item width issue
Browse files Browse the repository at this point in the history
  • Loading branch information
gcsantos-gpa committed Oct 7, 2024
1 parent 078acf2 commit ba438d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const DiagnosticFiles = (props: { MeterID: number }) => {
<div className="row" style={{ flex: 1, overflow: 'hidden', marginLeft: '0px' }}>
<Table<MiMD.IDiagnosticFile>
cols={[
{ key: 'MaxChangeFileName', field: 'MaxChangeFileName', label: 'File', headerStyle: { width: '30%' }, rowStyle: { width: '50%' } },
{ key: 'MaxChangeFileName', field: 'MaxChangeFileName', label: 'File', headerStyle: { width: '30%' }, rowStyle: { width: '30%' } },

{ key: 'MaxChangeWriteTime', label: 'Last Write Time', headerStyle: { width: 'auto' }, rowStyle: { width: 'auto' }, content: (item) => item.MaxChangeWriteTime == null ? '' : moment(item.MaxChangeWriteTime).format("MM/DD/YY HH:mm CT") },
{
Expand Down

0 comments on commit ba438d0

Please sign in to comment.