Skip to content

Commit 46b6b16

Browse files
authoredJun 24, 2024··
Merge pull request #44292 from Expensify/cmartins-fixDateWidth
Fix date column width
2 parents fecb740 + 477ed9a commit 46b6b16

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/styles/utils/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1551,7 +1551,7 @@ const createStyleUtils = (theme: ThemeColors, styles: ThemeStyles) => ({
15511551
columnWidth = {...getWidthStyle(variables.w36), ...styles.alignItemsCenter};
15521552
break;
15531553
case CONST.SEARCH.TABLE_COLUMNS.DATE:
1554-
columnWidth = getWidthStyle(shouldExtendDateColumn ? variables.w84 : variables.w52);
1554+
columnWidth = getWidthStyle(shouldExtendDateColumn ? variables.w92 : variables.w52);
15551555
break;
15561556
case CONST.SEARCH.TABLE_COLUMNS.MERCHANT:
15571557
case CONST.SEARCH.TABLE_COLUMNS.FROM:

‎src/styles/variables.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,6 @@ export default {
250250
w44: 44,
251251
w52: 52,
252252
w80: 80,
253-
w84: 84,
253+
w92: 92,
254254
w96: 96,
255255
} as const;

0 commit comments

Comments
 (0)
Please sign in to comment.