diff --git a/frontend/app/components/UsabilityTesting/TestEdit.tsx b/frontend/app/components/UsabilityTesting/TestEdit.tsx
index 79c95956f..22fcd396d 100644
--- a/frontend/app/components/UsabilityTesting/TestEdit.tsx
+++ b/frontend/app/components/UsabilityTesting/TestEdit.tsx
@@ -443,13 +443,13 @@ export function Step({
description && description?.length > 300 ? description.slice(0, 300) + '...' : description;
return (
{ind + 1}
diff --git a/frontend/app/components/UsabilityTesting/TestOverview.tsx b/frontend/app/components/UsabilityTesting/TestOverview.tsx
index e990101ad..fa7002aba 100644
--- a/frontend/app/components/UsabilityTesting/TestOverview.tsx
+++ b/frontend/app/components/UsabilityTesting/TestOverview.tsx
@@ -333,7 +333,8 @@ const TaskSummary = observer(() => {
Task Summary
{uxtestingStore.taskStats.length ? (
-
+
+
Average completion time of all tasks:
{uxtestingStore.taskStats
@@ -345,7 +346,7 @@ const TaskSummary = observer(() => {
)
: null}
-
+
) : null}
diff --git a/frontend/app/components/UsabilityTesting/UsabilityTesting.tsx b/frontend/app/components/UsabilityTesting/UsabilityTesting.tsx
index d949217e4..9d60224af 100644
--- a/frontend/app/components/UsabilityTesting/UsabilityTesting.tsx
+++ b/frontend/app/components/UsabilityTesting/UsabilityTesting.tsx
@@ -131,15 +131,17 @@ function TestsTable() {
{uxtestingStore.searchQuery === '' ? (
- ) : null}
+ ) : (
+
+ )}
{uxtestingStore.searchQuery === ''
- ? 'Uncover real user insights through usability tests.'
- : 'No results matching your search'}
+ ? 'Uncover real user insights through usability tests'
+ : 'No matching results'}
{uxtestingStore.searchQuery === ''
- ? 'Conduct summative testing to observe task completion and iterate your product.'
+ ? 'Conduct summative usability testing to observe task completion and iterate your product.'
: ''}
diff --git a/frontend/app/components/shared/SelectDateRange/SelectDateRange.tsx b/frontend/app/components/shared/SelectDateRange/SelectDateRange.tsx
index 60e457179..367611866 100644
--- a/frontend/app/components/shared/SelectDateRange/SelectDateRange.tsx
+++ b/frontend/app/components/shared/SelectDateRange/SelectDateRange.tsx
@@ -72,7 +72,7 @@ function SelectDateRange(props: Props) {
return (
-
+
{useButtonStyle ? (
{isCustomRange ? customRange : selectedValue?.label}
diff --git a/frontend/app/components/shared/SessionsTabOverview/components/SessionList/SessionDateRange.tsx b/frontend/app/components/shared/SessionsTabOverview/components/SessionList/SessionDateRange.tsx
index 2c02b1d6e..827eca29a 100644
--- a/frontend/app/components/shared/SessionsTabOverview/components/SessionList/SessionDateRange.tsx
+++ b/frontend/app/components/shared/SessionsTabOverview/components/SessionList/SessionDateRange.tsx
@@ -21,7 +21,7 @@ function SessionDateRange(props: Props) {
return (
No sessions {isCustom ? 'between' : 'in the'}
-
+
);
}
diff --git a/frontend/app/styles/general.css b/frontend/app/styles/general.css
index 7228c05cd..361268450 100644
--- a/frontend/app/styles/general.css
+++ b/frontend/app/styles/general.css
@@ -421,3 +421,7 @@ p {
box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
+
+.eg-card input[name="search"] {
+ visibility: hidden !important;
+}