Skip to content

Commit c1554a3

Browse files
committedSep 19, 2024
fix: disable quicktype schema generation temporary
1 parent 808e493 commit c1554a3

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed
 

‎packages/devtools/client/app.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ useEventListener('keydown', (e) => {
5656
})
5757
5858
const { scale, sidebarExpanded } = useDevToolsUIOptions()
59-
const dataSchema = useSchemaInput()
59+
// const dataSchema = useSchemaInput()
6060
6161
onMounted(async () => {
6262
const injectClient = useInjectionClient()
@@ -148,8 +148,8 @@ registerCommands(() => [
148148
</div>
149149
<DisconnectIndicator />
150150
<RestartDialogs />
151-
<div v-lazy-show="dataSchema">
151+
<!-- <div v-lazy-show="dataSchema">
152152
<LazyDataSchemaDrawer />
153-
</div>
153+
</div> -->
154154
</div>
155155
</template>

‎packages/devtools/client/components/ServerRouteDetails.vue

+3-2
Original file line numberDiff line numberDiff line change
@@ -578,10 +578,11 @@ const copy = useCopy()
578578
<code v-if="response.contentType" text-xs op50>
579579
{{ response.contentType }}
580580
</code>
581-
<DataSchemaButton
581+
<!-- TODO: quicktype has some problem of bundling (it's in CJS), we remove this temporary -->
582+
<!-- <DataSchemaButton
582583
v-if="response.contentType === 'application/json'"
583584
:getter="() => ({ input: responseContent })"
584-
/>
585+
/> -->
585586
<div flex-auto />
586587
<div op50>
587588
Request finished in

‎packages/devtools/client/components/StateEditor.vue

+3-2
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,11 @@ async function refresh() {
9090
<slot name="actions" v-bind="{ isOpen, name, state }" />
9191
<template v-if="isOpen">
9292
<NButton v-tooltip.bottom="'Refresh View'" title="Refresh View" icon="carbon-renew" :border="false" @click="refresh" />
93-
<DataSchemaButton
93+
<!-- TODO: quicktype has some problem of bundling (it's in CJS), we remove this temporary -->
94+
<!-- <DataSchemaButton
9495
v-if="proxy && !error"
9596
:getter="() => ({ name, input: JSON.stringify(proxy) })"
96-
/>
97+
/> -->
9798
</template>
9899
</div>
99100
<template v-if="isOpen || !name">

‎packages/devtools/client/components/docs/timeline.md

-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
# Timeline
22

3-
<p>
43
<blockquote text-orange bg-orange:10 py1>
54
This is an experimental feature
65
</blockquote>
7-
</p>
86

97
Timeline tracks your route navigations and functions calls in your Nuxt application. It can be used to debug performance issues and to understand how your application works.
108

0 commit comments

Comments
 (0)
Please sign in to comment.