Skip to content

Commit

Permalink
Feedback | Org Header | added company
Browse files Browse the repository at this point in the history
  • Loading branch information
snyaggarwal committed Oct 3, 2024
1 parent 0f04ddf commit 7790642
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/orgs/OrgHeader.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import ShareIcon from '@mui/icons-material/Share';
import DownIcon from '@mui/icons-material/ArrowDropDown';
import LocationIcon from '@mui/icons-material/LocationOnOutlined';
import LinkIcon from '@mui/icons-material/LinkOutlined';
import CompanyIcon from '@mui/icons-material/Business';
import { formatWebsiteLink } from '../../common/utils'
import Link from '../common/Link'
import EntityAttributesDialog from '../common/EntityAttributesDialog'
Expand Down Expand Up @@ -58,6 +59,7 @@ const OrgHeader = ({ org }) => {
<Property icon={<OrgIcon strict noLink sx={iconStyle} />} value={org.id} />
<Property icon={<LocationIcon sx={iconStyle} />} value={org.location} />
<Property icon={<LinkIcon sx={iconStyle} />} value={org?.website} label={formatWebsiteLink(org?.website, {color: 'inherit'})} />
<Property icon={<CompanyIcon sx={iconStyle} />} value={org?.company} />
<Property label={<Link sx={{fontSize: '14px'}} label={t('common.view_all_attributes')} onClick={() => setViewAll(true)} />} />
</div>
</div>
Expand Down

0 comments on commit 7790642

Please sign in to comment.