File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
packages/tdb-dashboard/src Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ export const IconBar = ({setShowFeedbackForm}) => {
1212 const instanceRead = accessControlDashboard && accessControlDashboard . instanceRead ( ) ? accessControlDashboard . instanceRead ( ) : false
1313 const { organization, dataProduct } = useParams ( ) ;
1414
15- let disabled = { } // { disabled:true}
16- let basecss = "" //" disabled"
17- /* if(dataProduct && dataProduct!=='_system' ){
15+ let disabled = { disabled :true }
16+ let basecss = "disabled"
17+ if ( dataProduct ) {
1818 disabled = { }
1919 basecss = ""
20- }*/
20+ }
2121
2222 const getUrl = ( pageName ) => {
2323 return `/${ organization } /${ dataProduct } /${ pageName } `
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ export const Home = () => {
4444 </ h3 >
4545 < Row >
4646 { teamList . map ( ( item , index ) => {
47+ if ( item . name !== "terminusCR" ) {
4748 return < Col md = { 4 } className = "py-2 doc-summary-card" key = { `key___${ index } ` } >
4849 < Button id = { item . name } className = "bg-transparent border-0 p-0 w-100" onClick = { ( e ) => changeOrganizationHandler ( item . name ) } >
4950 < Card bg = "dark" style = { { maxHeight : "220px" , cursor : "pointer" } } >
@@ -58,7 +59,7 @@ export const Home = () => {
5859 </ Card >
5960 </ Button >
6061 </ Col >
61- } ) }
62+ } } ) }
6263 </ Row >
6364 </ Col >
6465 </ Container >
You can’t perform that action at this time.
0 commit comments