File tree Expand file tree Collapse file tree 3 files changed +17
-0
lines changed
src/identity/components/OrganizationListTab Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,7 @@ export const OrgList: FC<Props> = ({
113113 regionCode = { org . regionCode }
114114 regionName = { org . regionName }
115115 provisioningStatus = { org . provisioningStatus }
116+ isActive = { org . isActive }
116117 />
117118 ) ) }
118119 </ >
Original file line number Diff line number Diff line change 5050 color : $cf-white ;
5151 }
5252}
53+
54+ .account--organizations-tab-active-org {
55+ border-radius : 50% ;
56+ border-style : solid ;
57+ border-width : 5px ;
58+ color : $c-rainforest ;
59+ display : inline-block ;
60+ left : 14px ;
61+ margin-top : 6px ;
62+ position : absolute ;
63+ }
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ import './OrganizationCard.scss'
1515
1616interface OrgCardProps {
1717 name : string
18+ isActive : boolean
1819 provider : string
1920 provisioningStatus ?: string
2021 regionCode : string
@@ -34,6 +35,7 @@ const tooltipContent = (
3435
3536export const OrganizationCard : FC < OrgCardProps > = ( {
3637 name,
38+ isActive,
3739 provider,
3840 provisioningStatus,
3941 regionCode,
@@ -52,6 +54,9 @@ export const OrganizationCard: FC<OrgCardProps> = ({
5254 justifyContent = { JustifyContent . SpaceBetween }
5355 testID = "account--organizations-tab-orgs-card"
5456 >
57+ { isActive && (
58+ < span className = "account--organizations-tab-active-org" > </ span >
59+ ) }
5560 < ResourceCard . Name
5661 name = { name }
5762 className = "account--organizations-tab-orgs-card-orgname"
You can’t perform that action at this time.
0 commit comments