File tree Expand file tree Collapse file tree 6 files changed +8
-7
lines changed
http-dump/ui/preview-card Expand file tree Collapse file tree 6 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ const uri = decodeURI(props.event.payload.request.uri);
1515
1616<template >
1717 <PreviewCard class =" preview-card" :event =" event" >
18- <NuxtLink tag = " div " :to =" eventLink" class =" preview-card__link" >
18+ <NuxtLink :to =" eventLink" class =" preview-card__link" >
1919 <span class =" preview-card__method" >
2020 {{ event.payload.request.method }} </span
2121 >:
Original file line number Diff line number Diff line change @@ -59,3 +59,4 @@ export interface InspectorSegment {
5959}
6060
6161export type Inspector = InspectorTransaction [ ] | InspectorSegment [ ] ;
62+
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ const exception: Ref<Exception> = computed(() =>
4545 :exception =" exception"
4646 :max-frames =" maxFrames"
4747 >
48- <NuxtLink tag = " div " :to =" eventLink" class =" preview-card__link" >
48+ <NuxtLink :to =" eventLink" class =" preview-card__link" >
4949 <h3 class =" preview-card__title" >
5050 {{ exception.type }}
5151 </h3 >
@@ -55,7 +55,7 @@ const exception: Ref<Exception> = computed(() =>
5555 </SentryException >
5656
5757 <div v-if =" message" >
58- <NuxtLink tag = " div " :to =" eventLink" class =" preview-card__link" >
58+ <NuxtLink :to =" eventLink" class =" preview-card__link" >
5959 <pre class =" preview-card__text" v-html =" message" />
6060 </NuxtLink >
6161 </div >
Original file line number Diff line number Diff line change 11<script lang="ts" setup>
22import { computed } from " vue" ;
33import type { Ref } from " vue" ;
4- import {
4+ import type {
55 InspectorSegment ,
66 InspectorTransaction ,
77 Inspector ,
Original file line number Diff line number Diff line change 11import type { Meta , StoryObj } from "@storybook/vue3" ;
2- import { useInspector } from " ~/src/entities/inspector" ;
3- import { inspectorMock } from '~/src/entities/inspector/mocks'
2+ import { useInspector } from ' ~/src/entities/inspector' ;
3+ import { inspectorMock } from '~/src/entities/inspector/mocks' ;
44import InspectorPage from './inspector-page.vue' ;
55
66const { normalizeInspectorEvent } = useInspector ( ) ;
Original file line number Diff line number Diff line change 22import moment from " moment/moment" ;
33import { computed } from " vue" ;
44import { InspectorStatBoard } from " ~/src/entities/inspector" ;
5- import { Inspector } from " ~/src/entities/inspector/types" ;
5+ import type { Inspector } from " ~/src/entities/inspector/types" ;
66import type { NormalizedEvent } from " ~/src/shared/types" ;
77import { TableBase , TableBaseRow } from " ~/src/shared/ui" ;
88import { InspectorPageTimeline } from " ../inspector-page-timeline" ;
You can’t perform that action at this time.
0 commit comments