From b952acaca9ed91e120799ab16e1f365be757a0eb Mon Sep 17 00:00:00 2001 From: Akmal Isomadinov Date: Fri, 16 Aug 2024 15:20:33 +0500 Subject: [PATCH] Client: Fixed bug 69707 --- packages/client/public/locales/en/PDFFormDialog.json | 2 +- .../dialogs/CreatedPDFFormDialog/CreatedPDFFormDialog.tsx | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/packages/client/public/locales/en/PDFFormDialog.json b/packages/client/public/locales/en/PDFFormDialog.json index 93408f6085..784ade7520 100644 --- a/packages/client/public/locales/en/PDFFormDialog.json +++ b/packages/client/public/locales/en/PDFFormDialog.json @@ -1,5 +1,5 @@ { - "PDFFormDialogTitle": "Ready-to-fill-out PDF form", + "PDFform": "PDF form", "PDFFormEditDialogDescription": "Do you want to switch to the form editing mode? Please note that the form will no longer be available for filling out and you will need to click the Start filling button again after editing to fill it out.", "PDFFormEditDialogTitle": "Form editing", "PDFFormIsReadyToast": "PDF form <1>{{filename}} is ready to be filled out.", diff --git a/packages/client/src/components/dialogs/CreatedPDFFormDialog/CreatedPDFFormDialog.tsx b/packages/client/src/components/dialogs/CreatedPDFFormDialog/CreatedPDFFormDialog.tsx index 2a97e2e06c..7945ddf7b3 100644 --- a/packages/client/src/components/dialogs/CreatedPDFFormDialog/CreatedPDFFormDialog.tsx +++ b/packages/client/src/components/dialogs/CreatedPDFFormDialog/CreatedPDFFormDialog.tsx @@ -84,7 +84,7 @@ export const CreatedPDFFormDialog = inject( onClose={onClose} displayType={ModalDialogType.modal} > - {t("PDFFormDialogTitle")} + {t("PDFform")} {theme.isBase ? : } @@ -104,15 +104,12 @@ export const CreatedPDFFormDialog = inject( size={ButtonSize.normal} label={primaryButtonLabel} onClick={onSubmit} - // isLoading={isLoading} />