-
Issues
+
Issues
{!!filter.filters[1] && (
-
+
Showing issues of {filter.filters[0].value}
to
{filter.filters[1].value}
@@ -109,7 +110,15 @@ function CardIssues() {
-
+
+
+ No data available.
+
+ }
+
+ >
{/*{data.issues.map((item: any, index: any) => (*/}
{/*
handleClick(item)} key={index}>*/}
{/*
*/}
diff --git a/frontend/app/components/Dashboard/components/Funnels/FunnelIssuesList/FunnelIssuesList.tsx b/frontend/app/components/Dashboard/components/Funnels/FunnelIssuesList/FunnelIssuesList.tsx
index a8b7f549e..8eb4a508c 100644
--- a/frontend/app/components/Dashboard/components/Funnels/FunnelIssuesList/FunnelIssuesList.tsx
+++ b/frontend/app/components/Dashboard/components/Funnels/FunnelIssuesList/FunnelIssuesList.tsx
@@ -7,9 +7,8 @@ import { RouteComponentProps, withRouter } from 'react-router-dom';
import { useModal } from 'App/components/Modal';
import { useStore } from 'App/mstore';
import { NoContent } from 'UI';
-
+import { InfoCircleOutlined } from '@ant-design/icons';
import AnimatedSVG, { ICONS } from 'Shared/AnimatedSVG/AnimatedSVG';
-
import FunnelIssueModal from '../FunnelIssueModal';
import FunnelIssuesListItem from '../FunnelIssuesListItem';
@@ -117,7 +116,7 @@ function FunnelIssuesList(props: RouteComponentProps
) {
title={
-
No issues found
+
No issues found
}
>
diff --git a/frontend/app/components/Session_/EventsBlock/EventGroupWrapper.js b/frontend/app/components/Session_/EventsBlock/EventGroupWrapper.js
index 4ae9e6676..9323c637b 100644
--- a/frontend/app/components/Session_/EventsBlock/EventGroupWrapper.js
+++ b/frontend/app/components/Session_/EventsBlock/EventGroupWrapper.js
@@ -142,12 +142,13 @@ class EventGroupWrapper extends React.Component {
style={{
position: 'absolute',
top: '50%',
- left: -7,
+ left: -10,
width: 10,
height: 10,
transform: 'rotate(45deg) translate(0, -50%)',
background: '#394EFF',
zIndex: 99,
+ borderRadius: '.15rem',
}}
/>
) : null}
diff --git a/frontend/app/components/Session_/EventsBlock/NoteEvent.tsx b/frontend/app/components/Session_/EventsBlock/NoteEvent.tsx
index 18481da51..ef0cdb002 100644
--- a/frontend/app/components/Session_/EventsBlock/NoteEvent.tsx
+++ b/frontend/app/components/Session_/EventsBlock/NoteEvent.tsx
@@ -76,7 +76,7 @@ function NoteEvent(props: Props) {
{ icon: 'trash', text: 'Delete', onClick: onDelete },
];
return (
-
+
@@ -93,7 +93,7 @@ function NoteEvent(props: Props) {
>
{props.note.userName}
-
+
{formatTimeOrDate(props.note.createdAt as unknown as number, timezone)}
@@ -110,7 +110,7 @@ function NoteEvent(props: Props) {
{props.note.tag ? (
-
+
{props.note.tag}
) : null}
diff --git a/frontend/app/components/Session_/Player/Controls/components/CreateNote.tsx b/frontend/app/components/Session_/Player/Controls/components/CreateNote.tsx
index a6627fec8..3da4a31d7 100644
--- a/frontend/app/components/Session_/Player/Controls/components/CreateNote.tsx
+++ b/frontend/app/components/Session_/Player/Controls/components/CreateNote.tsx
@@ -241,8 +241,10 @@ function CreateNote({
addTag(tag)}
key={tag}
- className={'cursor-pointer'}
+ className='cursor-pointer rounded-lg hover:bg-indigo-50'
color={tagActive(tag) ? tagProps[tag] : undefined}
+ bordered={false}
+
>
{tagActive(tag) ? (
diff --git a/frontend/app/components/shared/SessionsTabOverview/components/Notes/NoteItem.tsx b/frontend/app/components/shared/SessionsTabOverview/components/Notes/NoteItem.tsx
index f21e4f060..a1be32388 100644
--- a/frontend/app/components/shared/SessionsTabOverview/components/Notes/NoteItem.tsx
+++ b/frontend/app/components/shared/SessionsTabOverview/components/Notes/NoteItem.tsx
@@ -65,12 +65,13 @@ function NoteItem(props: Props) {
{props.note.tag}
) : null}
-