mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
8ca159b4b9
PDF Detach GitOrigin-RevId: f69d8a87d1ba2115ad496a719106dfc7707a6ed5
25 lines
570 B
JavaScript
25 lines
570 B
JavaScript
import { Button } from 'react-bootstrap'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { memo } from 'react'
|
|
import { buildUrlWithDetachRole } from '../../../shared/utils/url-helper'
|
|
|
|
const redirect = function () {
|
|
window.location = buildUrlWithDetachRole(null)
|
|
}
|
|
|
|
function PdfOrphanRefreshButton() {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<Button
|
|
onClick={redirect}
|
|
className="btn-orphan"
|
|
bsStyle="primary"
|
|
bsSize="small"
|
|
>
|
|
{t('redirect_to_editor')}
|
|
</Button>
|
|
)
|
|
}
|
|
|
|
export default memo(PdfOrphanRefreshButton)
|