Skip to content

Commit c3b7a8b

Browse files
Merge pull request #276 from terminusdb/add-change-request-optional
Add change request optional
2 parents ab4e796 + 3704e01 commit c3b7a8b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/tdb-dashboard/src/pages/IndexingActionMonitor.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ export const IndexingActionMonitor=(props)=>{
4242
</ListGroup>
4343
</Card.Body>
4444
</Card>}
45-
{!loading && searchableCommit && searchableCommit.length === 0 && <DisplayNoIndexingAction helpDescription={`You need to index your data before any index actions appear on this page`}/>}
45+
{!loading && !searchableCommit && <DisplayNoIndexingAction helpDescription={`You need to index your data before any index actions appear on this page`}/>}
46+
4647
</div>
4748
</div>
4849
</Layout>

0 commit comments

Comments
 (0)