mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-26 05:53:23 +00:00
Ensure unique ids for tooltips (#13079)
GitOrigin-RevId: 9b6e5c60dade356549bb1b3fd9c6254ab00ace56
This commit is contained in:
parent
60370d5227
commit
fefc8384fb
3 changed files with 3 additions and 3 deletions
|
@ -23,7 +23,7 @@ function DetachCompileButton() {
|
|||
return (
|
||||
<div className="detach-compile-button-container">
|
||||
<Tooltip
|
||||
id="logs-toggle"
|
||||
id="detach-compile"
|
||||
description={tooltipElement}
|
||||
tooltipProps={{ className: 'keyboard-tooltip' }}
|
||||
overlayProps={{ delayShow: 500 }}
|
||||
|
|
|
@ -56,7 +56,7 @@ function PdfCompileButton() {
|
|||
button={{
|
||||
tooltip: {
|
||||
description: tooltipElement,
|
||||
id: 'logs-toggle',
|
||||
id: 'compile',
|
||||
tooltipProps: { className: 'keyboard-tooltip' },
|
||||
overlayProps: { delayShow: 500 },
|
||||
},
|
||||
|
|
|
@ -22,7 +22,7 @@ function PdfHybridDownloadButton() {
|
|||
|
||||
return (
|
||||
<Tooltip
|
||||
id="logs-toggle"
|
||||
id="download-pdf"
|
||||
description={description}
|
||||
overlayProps={{ placement: 'bottom' }}
|
||||
>
|
||||
|
|
Loading…
Reference in a new issue