mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
Updated missed references to unique visitors
ref https://github.com/TryGhost/Ghost/pull/21035 - We decided to rename unique visitors to unique visits, but I missed a few places. Updated test case names for good measure
This commit is contained in:
parent
1c8513d94b
commit
f828ddefee
2 changed files with 3 additions and 3 deletions
|
@ -175,7 +175,7 @@ export default class KpisComponent extends Component {
|
|||
displayValue = fparams[0].value[1] !== null && fparams[0].value[1].toFixed(2) + '%';
|
||||
break;
|
||||
default:
|
||||
tooltipTitle = 'Unique visitors';
|
||||
tooltipTitle = 'Unique visits';
|
||||
displayValue = fparams[0].value[1] !== null && formatNumber(fparams[0].value[1]);
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -60,7 +60,7 @@ describe('Acceptance: Stats', function () {
|
|||
it('can filter by date range', async function () {});
|
||||
it('can filter by number of days', async function () {});
|
||||
|
||||
it('shows sum of unique visitors', async function () {});
|
||||
it('shows sum of unique visits', async function () {});
|
||||
it('shows sum of visits', async function () {});
|
||||
it('shows sum of pageviews', async function () {});
|
||||
it('shows average bounce rate', async function () {});
|
||||
|
@ -68,7 +68,7 @@ describe('Acceptance: Stats', function () {
|
|||
|
||||
it('can switch between kpi tabs', async function () {});
|
||||
|
||||
it('shows unique visitors chart', async function () {});
|
||||
it('shows unique visits chart', async function () {});
|
||||
it('shows visits chart', async function () {});
|
||||
it('shows pageviews chart', async function () {});
|
||||
it('shows bounce rate chart', async function () {});
|
||||
|
|
Loading…
Reference in a new issue