change(ui) - user events text change

This commit is contained in:
Shekar Siri 2023-05-02 17:57:50 +02:00
parent 32bfefe8a4
commit c6ba536115
5 changed files with 5 additions and 5 deletions

View file

@ -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>

View file

@ -9,7 +9,7 @@ import Session from 'Types/session'
import PlayerBlock from './PlayerBlock';
const TABS = {
EVENTS: 'User Steps',
EVENTS: 'User Events',
HEATMAPS: 'Click Map',
};

View file

@ -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',
};

View file

@ -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;

View file

@ -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}