mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-06 16:43:25 +01:00
Show implementation name in Application Modal's header
This commit is contained in:
parent
470b57316a
commit
5764950b10
1 changed files with 2 additions and 1 deletions
|
|
@ -45,6 +45,7 @@ function EditApplicationModalContent(props) {
|
|||
|
||||
const {
|
||||
id,
|
||||
implementationName,
|
||||
name,
|
||||
syncLevel,
|
||||
tags,
|
||||
|
|
@ -55,7 +56,7 @@ function EditApplicationModalContent(props) {
|
|||
return (
|
||||
<ModalContent onModalClose={onModalClose}>
|
||||
<ModalHeader>
|
||||
{`${id ? translate('Edit') : translate('Add')} ${translate('Application')}`}
|
||||
{`${id ? translate('Edit') : translate('Add')} ${translate('Application')} - ${implementationName}`}
|
||||
</ModalHeader>
|
||||
|
||||
<ModalBody>
|
||||
|
|
|
|||
Loading…
Reference in a new issue