diff --git a/frontend/app/components/Assist/RecordingsList/RecordingsList.tsx b/frontend/app/components/Assist/RecordingsList/RecordingsList.tsx index 0e8d1afd5..e186288d3 100644 --- a/frontend/app/components/Assist/RecordingsList/RecordingsList.tsx +++ b/frontend/app/components/Assist/RecordingsList/RecordingsList.tsx @@ -1,6 +1,6 @@ import { observer } from 'mobx-react-lite'; import React from 'react'; -import { NoContent, Pagination, Icon } from 'UI'; +import { NoContent, Pagination, Icon, Button } from 'UI'; import { useStore } from 'App/mstore'; import { filterList } from 'App/utils'; import { sliceListPerPage } from 'App/utils'; @@ -30,13 +30,19 @@ function RecordingsList() { title={
-
- {recordsSearch !== '' - ? 'No matching results' - : "No recordings available yet."} +
+ {recordsSearch !== '' ? 'No matching results' : 'No recordings available yet.'}
} + subtext={ +
+ + Record your co-browsing sessions and share them with your team for product feedback or + training purposes. + +
+ } >
diff --git a/frontend/app/components/Client/Users/components/UserList/UserList.tsx b/frontend/app/components/Client/Users/components/UserList/UserList.tsx index f18e3586c..5ad9993eb 100644 --- a/frontend/app/components/Client/Users/components/UserList/UserList.tsx +++ b/frontend/app/components/Client/Users/components/UserList/UserList.tsx @@ -7,6 +7,7 @@ import { Pagination, NoContent, Loader } from 'UI'; import { useModal } from 'App/components/Modal'; import UserForm from '../UserForm'; import AnimatedSVG, { ICONS } from 'Shared/AnimatedSVG/AnimatedSVG'; +import { filterList } from 'App/utils'; interface Props { isOnboarding?: boolean; @@ -20,15 +21,17 @@ function UserList(props: Props) { const searchQuery = useObserver(() => userStore.searchQuery); const { showModal } = useModal(); - const filterList = (list) => { - const filterRE = getRE(searchQuery, 'i'); - let _list = list.filter((w) => { - return filterRE.test(w.email) || filterRE.test(w.roleName); - }); - return _list; - }; + // const filterList = (list) => { + // const filterRE = getRE(searchQuery, 'i'); + // let _list = list.filter((w) => { + // return filterRE.test(w.email) || filterRE.test(w.roleName); + // }); + // return _list; + // }; + console.log(users) + const getList = (list) => filterList(list, searchQuery, ['email', 'roleName', 'name']) - const list: any = searchQuery !== '' ? filterList(users) : users; + const list: any = searchQuery !== '' ? getList(users) : users; const length = list.length; useEffect(() => { diff --git a/frontend/app/components/Dashboard/components/DashboardList/Header.tsx b/frontend/app/components/Dashboard/components/DashboardList/Header.tsx index ad0cecdc9..9a8e9de22 100644 --- a/frontend/app/components/Dashboard/components/DashboardList/Header.tsx +++ b/frontend/app/components/Dashboard/components/DashboardList/Header.tsx @@ -36,7 +36,7 @@ function Header({ history, siteId }: { history: any; siteId: string }) {
- A Dashboard is a collection of Metrics that can be shared across teams. + A Dashboard is a collection of Cards that can be shared across teams.
- Assist allows you to support your users through live screen viewing and - audio/video calls.{' '} + Assist is the best way to support you users while they're browsing your site, + {' '}through live replay, co-browsing and video conferencing capabilities. Learn More.{' '} > }) {
{/* */} -
No notes yet
+
No notes yet.
+
+ } + subtext={ +
+ Create notes when replaying sessions and share your insights with the team.
} > diff --git a/frontend/app/components/shared/SessionListContainer/components/SessionList/SessionList.tsx b/frontend/app/components/shared/SessionListContainer/components/SessionList/SessionList.tsx index b8df9e446..07a520218 100644 --- a/frontend/app/components/shared/SessionListContainer/components/SessionList/SessionList.tsx +++ b/frontend/app/components/shared/SessionListContainer/components/SessionList/SessionList.tsx @@ -154,7 +154,7 @@ function SessionList(props: Props) { {(isVault || isBookmark) && (
{isVault - ? 'Add a session to your vault from player screen to retain it for ever.' + ? 'Add any session to your vault from the replay page and retain it longer.' : 'Bookmark important sessions in player screen and quickly find them here.'}
)}