fix(react/dialogs): dollar signs in help tooltips

This commit is contained in:
Elian Doran
2025-08-10 14:07:54 +03:00
parent 861374bb87
commit 5cd7e4707a
2 changed files with 6 additions and 6 deletions

View File

@@ -16,9 +16,9 @@ function UpdateLabelValueComponent({ bulkAction, actionDef }: { bulkAction: Abst
bulkAction={bulkAction} bulkAction={bulkAction}
label={t("update_label_value.update_label_value")} label={t("update_label_value.update_label_value")}
helpText={<> helpText={<>
<p>${t("update_label_value.help_text")}</p> <p>{t("update_label_value.help_text")}</p>
${t("update_label_value.help_text_note")} {t("update_label_value.help_text_note")}
</>} </>}
> >
<FormTextBox <FormTextBox

View File

@@ -17,12 +17,12 @@ function MoveNoteBulkActionComponent({ bulkAction, actionDef }: { bulkAction: Ab
bulkAction={bulkAction} bulkAction={bulkAction}
label={t("move_note.move_note")} label={t("move_note.move_note")}
helpText={<> helpText={<>
<p>${t("move_note.on_all_matched_notes")}:</p> <p>{t("move_note.on_all_matched_notes")}:</p>
<ul style="margin-bottom: 0;"> <ul style="margin-bottom: 0;">
<li>${t("move_note.move_note_new_parent")}</li> <li>{t("move_note.move_note_new_parent")}</li>
<li>${t("move_note.clone_note_new_parent")}</li> <li>{t("move_note.clone_note_new_parent")}</li>
<li>${t("move_note.nothing_will_happen")}</li> <li>{t("move_note.nothing_will_happen")}</li>
</ul> </ul>
</>} </>}
> >