ui: bump tab tooltip delay
This commit is contained in:
parent
ecb192f16e
commit
586472c7dd
3 changed files with 3 additions and 2 deletions
|
|
@ -28,7 +28,7 @@ function Tab({ i, tab, currentTab, changeTab, isLive, isClosed, name }: Props) {
|
||||||
: 'cursor-pointer border-gray-lighter !border-b !border-t-transparent !border-l-transparent !border-r-transparent',
|
: 'cursor-pointer border-gray-lighter !border-b !border-t-transparent !border-l-transparent !border-r-transparent',
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<Tooltip title={name && name.length > 20 ? name : ''}>
|
<Tooltip title={name && name.length > 20 ? name : ''} mouseEnterDelay={0.5}>
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
<div className="bg-gray-light rounded-full min-w-5 min-h-5 w-5 h-5 flex items-center justify-center text-xs">
|
<div className="bg-gray-light rounded-full min-w-5 min-h-5 w-5 h-5 flex items-center justify-center text-xs">
|
||||||
<div>{i + 1}</div>
|
<div>{i + 1}</div>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@openreplay/tracker",
|
"name": "@openreplay/tracker",
|
||||||
"description": "The OpenReplay tracker main package",
|
"description": "The OpenReplay tracker main package",
|
||||||
"version": "16.1.1",
|
"version": "16.1.2-beta.0",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"logging",
|
"logging",
|
||||||
"replay"
|
"replay"
|
||||||
|
|
|
||||||
|
|
@ -432,6 +432,7 @@ export default class App {
|
||||||
if (ev.data.context === this.contextId) {
|
if (ev.data.context === this.contextId) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
this.debug.log(ev)
|
||||||
if (ev.data.line === proto.resp) {
|
if (ev.data.line === proto.resp) {
|
||||||
const sessionToken = ev.data.token
|
const sessionToken = ev.data.token
|
||||||
this.session.setSessionToken(sessionToken)
|
this.session.setSessionToken(sessionToken)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue