We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 16b8706 + ab995f4 commit abc6f19Copy full SHA for abc6f19
ab-testing/frontend/src/routes/+page.svelte
@@ -4,7 +4,7 @@
4
import AudienceBreakdown from '$lib/components/AudienceBreakdown.svelte';
5
</script>
6
7
-<h1 class="headline">A/B Tests</h1>
+<h1 class="headline">A/B Tests (Beta)</h1>
8
<section>
9
<p>
10
This page provides an overview of currently running A/B tests on
@@ -31,8 +31,14 @@
31
</p>
32
</section>
33
34
- <AudienceBreakdown tests={activeABtests} />
35
- <Table tests={allABTests} />
+ {#if activeABtests.length > 0}
+ <AudienceBreakdown tests={activeABtests} />
36
+ {/if}
37
+ {#if allABTests.length > 0}
38
+ <Table tests={allABTests} />
39
+ {:else}
40
+ <p>There are <b>ZERO</b> A/B tests currently configured!</p>
41
42
43
44
<style>
0 commit comments