mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #13259 from overleaf/td-history-survey-link
History migration: Add beta badge to history toolbar GitOrigin-RevId: e5c818953a7d41c31018a2d39c3937d70c057f8c
This commit is contained in:
parent
a4c684e266
commit
a74eecd110
2 changed files with 6 additions and 4 deletions
|
@ -5,6 +5,7 @@ import ToolbarDatetime from './toolbar-datetime'
|
|||
import ToolbarFileInfo from './toolbar-file-info'
|
||||
import ToolbarRestoreFileButton from './toolbar-restore-file-button'
|
||||
import { isFileRemoved } from '../../../utils/file-diff'
|
||||
import SplitTestBadge from '../../../../../shared/components/split-test-badge'
|
||||
|
||||
type ToolbarProps = {
|
||||
diff: Nullable<Diff>
|
||||
|
@ -17,6 +18,10 @@ export default function Toolbar({ diff, selection }: ToolbarProps) {
|
|||
|
||||
return (
|
||||
<div className="history-react-toolbar">
|
||||
<SplitTestBadge
|
||||
splitTestName="history-view"
|
||||
displayOnVariants={['react']}
|
||||
/>
|
||||
<ToolbarDatetime selection={selection} />
|
||||
{selection.selectedFile?.pathname ? (
|
||||
<ToolbarFileInfo diff={diff} selection={selection} />
|
||||
|
|
|
@ -266,6 +266,7 @@ history-root {
|
|||
.history-react-toolbar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
|
||||
.history-react-toolbar-file-info {
|
||||
flex: 1;
|
||||
|
@ -275,10 +276,6 @@ history-root {
|
|||
.history-react-toolbar-time {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.history-react-toolbar-restore-file-button {
|
||||
margin-left: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.history-paywall-prompt {
|
||||
|
|
Loading…
Reference in a new issue