1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

Fixed Custom Format Deletion confirmation message

(cherry picked from commit b76bf373717edff8e475fde31fbaec86c65903fe)

Closes #9410
This commit is contained in:
Stevie Robinson
2023-11-17 01:31:44 +01:00
committed by Bogdan
parent fc345047ee
commit c5075e5d49
25 changed files with 25 additions and 25 deletions
@@ -152,7 +152,7 @@ class CustomFormat extends Component {
isOpen={this.state.isDeleteCustomFormatModalOpen}
kind={kinds.DANGER}
title={translate('DeleteCustomFormat')}
message={translate('DeleteCustomFormatMessageText', { name })}
message={translate('DeleteCustomFormatMessageText', { customFormatName: name })}
confirmLabel={translate('Delete')}
isSpinning={isDeleting}
onConfirm={this.onConfirmDeleteCustomFormat}