fix(ui) uxt fixes
This commit is contained in:
parent
d50dfa1def
commit
1dfafa4a67
2 changed files with 4 additions and 2 deletions
|
|
@ -17,7 +17,7 @@ function RightBlock(props: any) {
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
if (activeTab === 'HEATMAPS') {
|
if (activeTab === 'CLICKMAP') {
|
||||||
return (
|
return (
|
||||||
<div className={cn("flex flex-col bg-white border-l", stl.panel)}>
|
<div className={cn("flex flex-col bg-white border-l", stl.panel)}>
|
||||||
<PageInsightsPanel setActiveTab={props.setActiveTab} />
|
<PageInsightsPanel setActiveTab={props.setActiveTab} />
|
||||||
|
|
|
||||||
|
|
@ -113,7 +113,9 @@ function WebPlayer(props: any) {
|
||||||
);
|
);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setActiveTab('EVENTS')
|
if (uxtestingStore.isUxt()) {
|
||||||
|
setActiveTab('EVENTS')
|
||||||
|
}
|
||||||
}, [uxtestingStore.isUxt()])
|
}, [uxtestingStore.isUxt()])
|
||||||
|
|
||||||
const onNoteClose = () => {
|
const onNoteClose = () => {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue