|
|
|
@ -8,6 +8,7 @@ import TagListConnector from 'Components/TagListConnector';
|
|
|
|
|
import { createMetadataProfileSelectorForHook } from 'Store/Selectors/createMetadataProfileSelector';
|
|
|
|
|
import { createQualityProfileSelectorForHook } from 'Store/Selectors/createQualityProfileSelector';
|
|
|
|
|
import { SelectStateInputProps } from 'typings/props';
|
|
|
|
|
import translate from 'Utilities/String/translate';
|
|
|
|
|
import styles from './ManageImportListsModalRow.css';
|
|
|
|
|
|
|
|
|
|
interface ManageImportListsModalRowProps {
|
|
|
|
@ -70,7 +71,7 @@ function ManageImportListsModalRow(props: ManageImportListsModalRowProps) {
|
|
|
|
|
</TableRowCell>
|
|
|
|
|
|
|
|
|
|
<TableRowCell className={styles.qualityProfileId}>
|
|
|
|
|
{qualityProfile?.name ?? 'None'}
|
|
|
|
|
{qualityProfile?.name ?? translate('None')}
|
|
|
|
|
</TableRowCell>
|
|
|
|
|
|
|
|
|
|
<TableRowCell className={styles.metadataProfileId}>
|
|
|
|
@ -82,7 +83,7 @@ function ManageImportListsModalRow(props: ManageImportListsModalRowProps) {
|
|
|
|
|
</TableRowCell>
|
|
|
|
|
|
|
|
|
|
<TableRowCell className={styles.enableAutomaticAdd}>
|
|
|
|
|
{enableAutomaticAdd ? 'Yes' : 'No'}
|
|
|
|
|
{enableAutomaticAdd ? translate('Yes') : translate('No')}
|
|
|
|
|
</TableRowCell>
|
|
|
|
|
|
|
|
|
|
<TableRowCell className={styles.tags}>
|
|
|
|
|