Skip to content

Commit

Permalink
Update JsonPreviewInExcelForm.js
Browse files Browse the repository at this point in the history
  • Loading branch information
siddhant-nawale-egov committed May 28, 2024
1 parent 4b38f0a commit 9301e4a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const JsonPreviewInExcelForm = (props) => {
<td
key={cellIndex}
style={{
...(!isNaN(rowData[cellIndex]) ? { textAlign: "end" } : {}),
...(!isNaN(rowData[cellIndex]) && isFinite(rowData[cellIndex]) ? { textAlign: "end" } : {}),
...( error? {backgroundColor:"rgb(250,148,148)"} : {}),
}}
title={error? t(error):undefined}
Expand Down

0 comments on commit 9301e4a

Please sign in to comment.