Skip to content

Commit 45730fc

Browse files
authored
Merge pull request #288 from terminusdb/add-change-request-optional
remove the CR team from the local dashboard list
2 parents d9e2d88 + 03152e0 commit 45730fc

File tree

1 file changed

+12
-12
lines changed
  • packages/tdb-dashboard/src/pages

1 file changed

+12
-12
lines changed

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -46,18 +46,18 @@ export const Home = () => {
4646
{teamList.map((item,index) =>{
4747
if(item.name!=="terminusCR"){
4848
return <Col md={4} className="py-2 doc-summary-card" key={`key___${index}`}>
49-
<Button id={item.name} className="bg-transparent border-0 p-0 w-100" onClick={(e) => changeOrganizationHandler(item.name)}>
50-
<Card bg="dark" style={{maxHeight: "220px", cursor: "pointer"}} >
51-
<Card.Header className="bg-transparent border-0 d-flex text-wrap">
52-
</Card.Header>
53-
<Card.Body>
54-
<Row className="ml-3">
55-
<h4>{item.name}</h4>
56-
</Row>
57-
</Card.Body>
58-
59-
</Card>
60-
</Button>
49+
<Button id={item.name} className="bg-transparent border-0 p-0 w-100" onClick={(e) => changeOrganizationHandler(item.name)}>
50+
<Card bg="dark" style={{maxHeight: "220px", cursor: "pointer"}} >
51+
<Card.Header className="bg-transparent border-0 d-flex text-wrap">
52+
</Card.Header>
53+
<Card.Body>
54+
<Row className="ml-3">
55+
<h4>{item.name}</h4>
56+
</Row>
57+
</Card.Body>
58+
59+
</Card>
60+
</Button>
6161
</Col>
6262
}})}
6363
</Row>

0 commit comments

Comments
 (0)