Client: Fixed bug 69707

This commit is contained in:
Akmal Isomadinov 2024-08-16 15:20:33 +05:00
parent cf4795c278
commit b952acaca9
2 changed files with 2 additions and 5 deletions

View File

@ -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}}</1> is ready to be filled out.",

View File

@ -84,7 +84,7 @@ export const CreatedPDFFormDialog = inject<TStore>(
onClose={onClose}
displayType={ModalDialogType.modal}
>
<ModalDialog.Header>{t("PDFFormDialogTitle")}</ModalDialog.Header>
<ModalDialog.Header>{t("PDFform")}</ModalDialog.Header>
<ModalDialog.Body>
<Wrapper>
{theme.isBase ? <HeaderIcon /> : <HeaderDarkIcon />}
@ -104,15 +104,12 @@ export const CreatedPDFFormDialog = inject<TStore>(
size={ButtonSize.normal}
label={primaryButtonLabel}
onClick={onSubmit}
// isLoading={isLoading}
/>
<Button
scale
tabIndex={0}
onClick={onClose}
size={ButtonSize.normal}
label={t("Common:Later")}
// isDisabled={isLoading}
/>
</ModalDialog.Footer>
</ModalDialog>