mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Show implementation name in Application Modal's header
This commit is contained in:
@@ -45,6 +45,7 @@ function EditApplicationModalContent(props) {
|
|||||||
|
|
||||||
const {
|
const {
|
||||||
id,
|
id,
|
||||||
|
implementationName,
|
||||||
name,
|
name,
|
||||||
syncLevel,
|
syncLevel,
|
||||||
tags,
|
tags,
|
||||||
@@ -55,7 +56,7 @@ function EditApplicationModalContent(props) {
|
|||||||
return (
|
return (
|
||||||
<ModalContent onModalClose={onModalClose}>
|
<ModalContent onModalClose={onModalClose}>
|
||||||
<ModalHeader>
|
<ModalHeader>
|
||||||
{`${id ? translate('Edit') : translate('Add')} ${translate('Application')}`}
|
{`${id ? translate('Edit') : translate('Add')} ${translate('Application')} - ${implementationName}`}
|
||||||
</ModalHeader>
|
</ModalHeader>
|
||||||
|
|
||||||
<ModalBody>
|
<ModalBody>
|
||||||
|
Reference in New Issue
Block a user