Skip to content
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.

Commit

Permalink
feat(ui): placeholder in snapshot summary
Browse files Browse the repository at this point in the history
  • Loading branch information
Akryum committed Feb 24, 2022
1 parent 7a6f92e commit 9181aa9
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ import { useQuery, useSubscription } from '@vue/apollo-composable'
import gql from 'graphql-tag'
import { computed } from 'vue'
import { useRoute } from 'vue-router'
import SnapshotView from './SnapshotView.vue'
import TestViewPlaceholder from '../test/TestViewPlaceholder.vue'
const runFragment = gql`fragment runOneSnapshot on Run {
id
Expand Down Expand Up @@ -115,4 +117,8 @@ onResult(() => {
@next="$router.push({ ...$route, query: { ...$route.query, snapshotId: nextSnapshotId } })"
@previous="$router.push({ ...$route, query: { ...$route.query, snapshotId: previousSnapshotId } })"
/>

<TestViewPlaceholder
v-else
/>
</template>

0 comments on commit 9181aa9

Please sign in to comment.