Fix BigInt custom scalar type + lint issues
Signed-off-by: Émile Ré <nemile.re@gmail.com>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @generated SignedSource<<ed36cb7e20499e431a51f06e456cc91e>>
|
||||
* @generated SignedSource<<b757ab583beb7a2556cabaa900b5b9de>>
|
||||
* @lightSyntaxTransform
|
||||
* @nogrep
|
||||
*/
|
||||
@@ -18,7 +18,7 @@ export type EvidenceGraphFileQuery$data = {
|
||||
readonly downloadUrl: string;
|
||||
readonly fileName: string;
|
||||
readonly mimeType: string;
|
||||
readonly size: string;
|
||||
readonly size: number;
|
||||
} | null | undefined;
|
||||
readonly id?: string;
|
||||
};
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @generated SignedSource<<b07c2f8f2454f080854744ddcc60face>>
|
||||
* @generated SignedSource<<ea635dd1a341c798d9f410ae862901f2>>
|
||||
* @lightSyntaxTransform
|
||||
* @nogrep
|
||||
*/
|
||||
@@ -19,7 +19,7 @@ export type MeasureEvidencesTabFragment$data = {
|
||||
readonly file: {
|
||||
readonly fileName: string;
|
||||
readonly mimeType: string;
|
||||
readonly size: string;
|
||||
readonly size: number;
|
||||
} | null | undefined;
|
||||
readonly id: string;
|
||||
readonly " $fragmentSpreads": FragmentRefs<"MeasureEvidencesTabFragment_evidence">;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @generated SignedSource<<da6add401e8c1c2e8f049bcda4ad31aa>>
|
||||
* @generated SignedSource<<b69ceb13c09f597365a10a68e277d535>>
|
||||
* @lightSyntaxTransform
|
||||
* @nogrep
|
||||
*/
|
||||
@@ -17,7 +17,7 @@ export type MeasureEvidencesTabFragment_evidence$data = {
|
||||
readonly file: {
|
||||
readonly fileName: string;
|
||||
readonly mimeType: string;
|
||||
readonly size: string;
|
||||
readonly size: number;
|
||||
} | null | undefined;
|
||||
readonly id: string;
|
||||
readonly type: EvidenceType;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @generated SignedSource<<3ba7c692eb07865e7e283e861a7cabdf>>
|
||||
* @generated SignedSource<<dc7aecc55aa17f43d9a601e60eea165a>>
|
||||
* @lightSyntaxTransform
|
||||
* @nogrep
|
||||
*/
|
||||
@@ -14,7 +14,7 @@ export type VendorComplianceTabFragment_report$data = {
|
||||
readonly file: {
|
||||
readonly fileName: string;
|
||||
readonly mimeType: string;
|
||||
readonly size: string;
|
||||
readonly size: number;
|
||||
} | null | undefined;
|
||||
readonly id: string;
|
||||
readonly reportDate: string;
|
||||
|
||||
@@ -224,7 +224,7 @@ function ReportRow(props: ReportRowProps) {
|
||||
<Td>{report.reportName}</Td>
|
||||
<Td>{formatDate(report.reportDate)}</Td>
|
||||
<Td>{formatDate(report.validUntil)}</Td>
|
||||
<Td>{fileSize(__, report.file?.size)}</Td>
|
||||
<Td>{fileSize(__, report.file?.size ?? 0)}</Td>
|
||||
{!props.isSnapshotMode && props.canDelete && (
|
||||
<Td width={50} className="text-end">
|
||||
<ActionDropdown>
|
||||
|
||||
Reference in New Issue
Block a user