fix(visualization): Retitle search metric (#5311)

These are not scaled by day, so "daily" isn't correct; we're presenting numbers summed over the entire period of analysis.
This commit is contained in:
Tim D. Smith 2021-05-27 05:41:57 -07:00 коммит произвёл GitHub
Родитель f8ee40654d
Коммит 4c187e03bc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -27,7 +27,7 @@ describe("TableResults", () => {
const EXPECTED_HEADINGS = [
"Picture-in-Picture Conversion",
"2-Week Browser Retention",
"Daily Mean Searches Per User",
"Mean Searches Per User",
"Overall Mean Days of Use Per User",
"Total Users",
];

Просмотреть файл

@ -138,7 +138,7 @@ export const RESULTS_METRICS_LIST = [
},
{
value: METRIC.SEARCH,
name: "Daily Mean Searches Per User",
name: "Mean Searches Per User",
tooltip: METRICS_TIPS.SEARCH,
type: METRIC_TYPE.GUARDRAIL,
},