mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-02 16:22:06 -05:00
64d9792fe3
[web]: Handle exceeded editor limit in share modal GitOrigin-RevId: 23a15805ca98327ae4a7fc731bbca3982c90bad5
23 lines
651 B
JavaScript
23 lines
651 B
JavaScript
import { useProjectContext } from '@/shared/context/project-context'
|
|
import { Col, Row } from 'react-bootstrap'
|
|
import { useTranslation } from 'react-i18next'
|
|
import Icon from '@/shared/components/icon'
|
|
|
|
export default function OwnerInfo() {
|
|
const { t } = useTranslation()
|
|
const { owner } = useProjectContext()
|
|
|
|
return (
|
|
<Row className="project-member">
|
|
<Col xs={9}>
|
|
<div className="project-member-email-icon">
|
|
<Icon type="user" fw />
|
|
<div className="email-warning">{owner?.email}</div>
|
|
</div>
|
|
</Col>
|
|
<Col xs={3} className="text-left">
|
|
{t('owner')}
|
|
</Col>
|
|
</Row>
|
|
)
|
|
}
|