New: Indexer Description in Add Indexer Modal

This commit is contained in:
bakerboy448
2022-02-02 13:53:44 -06:00
committed by Qstick
parent 788a5a3e24
commit cb8c0d4aa7
3 changed files with 15 additions and 2 deletions

View File

@@ -32,6 +32,7 @@ class SelectIndexerRow extends Component {
privacy,
name,
language,
description,
isExistingIndexer
} = this.props;
@@ -61,6 +62,10 @@ class SelectIndexerRow extends Component {
{language}
</TableRowCell>
<TableRowCell>
{description}
</TableRowCell>
<TableRowCell>
{translate(firstCharToUpper(privacy))}
</TableRowCell>
@@ -74,6 +79,7 @@ SelectIndexerRow.propTypes = {
protocol: PropTypes.string.isRequired,
privacy: PropTypes.string.isRequired,
language: PropTypes.string.isRequired,
description: PropTypes.string.isRequired,
implementation: PropTypes.string.isRequired,
onIndexerSelect: PropTypes.func.isRequired,
isExistingIndexer: PropTypes.bool.isRequired