diff --git a/src/libs/ReportUtils.ts b/src/libs/ReportUtils.ts index 3042c66e2b6a..9b0770e41e08 100644 --- a/src/libs/ReportUtils.ts +++ b/src/libs/ReportUtils.ts @@ -3304,6 +3304,9 @@ function isHoldCreator(transaction: OnyxEntry, reportID: string | u * 2. Report is settled or it is closed */ function isReportFieldDisabled(report: OnyxEntry, reportField: OnyxEntry, policy: OnyxEntry): boolean { + if (isInvoiceReport(report)) { + return true; + } const isReportSettled = isSettled(report?.reportID); const isReportClosed = isClosedReport(report); const isTitleField = isReportFieldOfTypeTitle(reportField);