fix(ui) - not popup conflict with timeline tooltip
This commit is contained in:
parent
e3ece35c89
commit
f6eff27ab8
2 changed files with 2 additions and 3 deletions
|
|
@ -30,6 +30,7 @@ import PlayerControls from './components/PlayerControls';
|
|||
|
||||
import styles from './controls.module.css';
|
||||
import XRayButton from 'Shared/XRayButton';
|
||||
import CreateNote from 'Components/Session_/Player/Controls/components/CreateNote';
|
||||
|
||||
export const SKIP_INTERVALS = {
|
||||
2: 2e3,
|
||||
|
|
@ -155,6 +156,7 @@ function Controls(props: any) {
|
|||
return (
|
||||
<div className={styles.controls}>
|
||||
<Timeline />
|
||||
<CreateNote />
|
||||
{!fullscreen && (
|
||||
<div className={cn(styles.buttons, '!px-2')}>
|
||||
<div className="flex items-center">
|
||||
|
|
|
|||
|
|
@ -1,16 +1,13 @@
|
|||
import React from 'react'
|
||||
import TimeTooltip from './TimeTooltip';
|
||||
import CreateNote from './CreateNote';
|
||||
import store from 'App/store';
|
||||
import { Provider } from 'react-redux';
|
||||
|
||||
function TooltipContainer() {
|
||||
|
||||
return (
|
||||
<Provider store={store}>
|
||||
<>
|
||||
<TimeTooltip />
|
||||
<CreateNote />
|
||||
</>
|
||||
</Provider>
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue