mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #8037 from overleaf/ii-refactor-tooltip-usage-fix
Place the download PDF tooltip to the bottom GitOrigin-RevId: e2171c4417de66f2143be66dc76ca7c450c43234
This commit is contained in:
parent
81816cfa2c
commit
bce320f4bc
1 changed files with 5 additions and 1 deletions
|
@ -13,7 +13,11 @@ function PdfHybridDownloadButton() {
|
||||||
: t('please_compile_pdf_before_download')
|
: t('please_compile_pdf_before_download')
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Tooltip id="logs-toggle" description={description}>
|
<Tooltip
|
||||||
|
id="logs-toggle"
|
||||||
|
description={description}
|
||||||
|
overlayProps={{ placement: 'bottom' }}
|
||||||
|
>
|
||||||
<Button
|
<Button
|
||||||
bsStyle="link"
|
bsStyle="link"
|
||||||
disabled={!pdfDownloadUrl}
|
disabled={!pdfDownloadUrl}
|
||||||
|
|
Loading…
Reference in a new issue