mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 01:18:23 +00:00
Add count of elements to new datasource modal (#2846)
This commit is contained in:
parent
83a68c88de
commit
31b4195aa2
1 changed files with 1 additions and 1 deletions
|
|
@ -343,7 +343,7 @@ class DataSourceManager extends React.Component {
|
|||
<ListGroup className="datasource-lists-modal" variant="flush">
|
||||
{dataSourceList.map((datasource) => (
|
||||
<ListGroup.Item key={datasource.key} eventKey={datasource.key}>
|
||||
{datasource.type}
|
||||
{`${datasource.type} (${datasource.list.length})`}
|
||||
</ListGroup.Item>
|
||||
))}
|
||||
</ListGroup>
|
||||
|
|
|
|||
Loading…
Reference in a new issue