Skip to content

Commit

Permalink
Merge pull request #44292 from Expensify/cmartins-fixDateWidth
Browse files Browse the repository at this point in the history
Fix date column width
  • Loading branch information
luacmartins authored Jun 24, 2024
2 parents fecb740 + 477ed9a commit 46b6b16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/styles/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1551,7 +1551,7 @@ const createStyleUtils = (theme: ThemeColors, styles: ThemeStyles) => ({
columnWidth = {...getWidthStyle(variables.w36), ...styles.alignItemsCenter};
break;
case CONST.SEARCH.TABLE_COLUMNS.DATE:
columnWidth = getWidthStyle(shouldExtendDateColumn ? variables.w84 : variables.w52);
columnWidth = getWidthStyle(shouldExtendDateColumn ? variables.w92 : variables.w52);
break;
case CONST.SEARCH.TABLE_COLUMNS.MERCHANT:
case CONST.SEARCH.TABLE_COLUMNS.FROM:
Expand Down
2 changes: 1 addition & 1 deletion src/styles/variables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,6 @@ export default {
w44: 44,
w52: 52,
w80: 80,
w84: 84,
w92: 92,
w96: 96,
} as const;

0 comments on commit 46b6b16

Please sign in to comment.