Skip to content

Commit

Permalink
CM-508: make modal bigger (#36)
Browse files Browse the repository at this point in the history
* CM-508: add payroll files tab

* CM-508: fix linter

* CM-508: add modal with files

* CM-508: fix linter

* CM-508: make modal bigger

---------

Co-authored-by: Jan <[email protected]>
  • Loading branch information
jdolkowski and Jan authored Feb 26, 2024
1 parent 636ca92 commit 3d9af67
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/payroll/PayrollPaymentFilesSearcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function PayrollPaymentFilesSearcher({
(file) => file.fileName,
(file) => file.status,
(file) => (
<Tooltip title={formatMessage('tooltip.delete')}>
<Tooltip title={formatMessage('tooltip.download')}>
<IconButton
onClick={() => download(payrollUuid, file.fileName)}
disabled={file.status !== PAYROLL_PAYMENT_FILE_STATUS.SUCCESS}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function PayrollReconciliationFilesDialog({
onClose={handleClose}
PaperProps={{
style: {
width: 600,
width: 1000,
maxWidth: 1000,
},
}}
Expand Down
1 change: 1 addition & 0 deletions src/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
"payroll.benefitConsumption.status.SUSPENDED": "Suspended",
"payroll.tooltip.save": "Save",
"payroll.tooltip.delete": "Delete",
"payroll.tooltip.download": "Download",

"payroll.advancedFilters": "Advanced Filters",
"payroll.advancedFilters.field": "Field",
Expand Down

0 comments on commit 3d9af67

Please sign in to comment.