Skip to content

Commit

Permalink
feat(analytics-config-check): testing single root node fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mihai-peteu committed Jul 22, 2024
1 parent 37b5822 commit 7ed675c
Showing 1 changed file with 13 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
<template>
<slot
v-if="!loading && passThrough"
:has-analytics="analytics"
:has-percentiles="percentiles"
/>
<slot
v-else-if="!loading"
:has-analytics="analytics"
:has-percentiles="percentiles"
name="fallback"
/>
<div>
<slot
v-if="!loading && passThrough"
:has-analytics="analytics"
:has-percentiles="percentiles"
/>
<slot
v-else-if="!loading"
:has-analytics="analytics"
:has-percentiles="percentiles"
name="fallback"
/>
</div>
</template>
<script setup lang="ts">
import { useAnalyticsConfigStore } from '../stores'
Expand Down

0 comments on commit 7ed675c

Please sign in to comment.