2021-11-15 11:33:57 -05:00
|
|
|
import { Button } from 'react-bootstrap'
|
|
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
import { memo } from 'react'
|
|
|
|
import { buildUrlWithDetachRole } from '../../../shared/utils/url-helper'
|
|
|
|
|
|
|
|
const redirect = function () {
|
2021-12-14 08:24:53 -05:00
|
|
|
window.location = buildUrlWithDetachRole(null).toString()
|
2021-11-15 11:33:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
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)
|