change(ui) - user events text change
This commit is contained in:
parent
32bfefe8a4
commit
c6ba536115
5 changed files with 5 additions and 5 deletions
|
|
@ -139,7 +139,7 @@ function EventsBlock(props: IProps) {
|
|||
setActiveTab={setActiveTab}
|
||||
value={query}
|
||||
header={
|
||||
<div className="text-xl">User Steps <span className="color-gray-medium">{ events.length }</span></div>
|
||||
<div className="text-xl">User Events <span className="color-gray-medium">{ events.length }</span></div>
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ import Session from 'Types/session'
|
|||
import PlayerBlock from './PlayerBlock';
|
||||
|
||||
const TABS = {
|
||||
EVENTS: 'User Steps',
|
||||
EVENTS: 'User Events',
|
||||
HEATMAPS: 'Click Map',
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ import { Note } from "App/services/NotesService";
|
|||
import { useParams } from 'react-router-dom'
|
||||
|
||||
const TABS = {
|
||||
EVENTS: 'User Steps',
|
||||
EVENTS: 'User Events',
|
||||
CLICKMAP: 'Click Map',
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ const Event: React.FC<Props> = ({
|
|||
isFrustration
|
||||
? Object.assign(tooltip, {
|
||||
disabled: false,
|
||||
text: `User hesitated to click for ${Math.round(event.hesitation / 1000)}s`
|
||||
text: `User hesitated ${Math.round(event.hesitation / 1000)}s to perform this event`
|
||||
})
|
||||
: null;
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ function EventSearch(props) {
|
|||
<Input
|
||||
autoFocus
|
||||
type="text"
|
||||
placeholder="Filter user steps"
|
||||
placeholder="Filter user events"
|
||||
className="inset-0 w-full"
|
||||
name="query"
|
||||
value={value}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue