File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
packages/devtools/client/pages/modules Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ definePageMeta({
77 category: ' analyze' ,
88})
99
10- const config = useServerConfig ()
10+ const app = useServerApp ()
1111const client = useClient ()
1212
1313const plugins = computed ((): PluginInfoWithMetic [] => {
14- const plugins = config .value ?.plugins || []
14+ const plugins = app .value ?.plugins || []
1515 const metics = client .value ?.getClientPluginMetrics () || []
1616
1717 return plugins .map ((plugin ) => {
@@ -33,10 +33,9 @@ const totalTime = computed(() => {
3333
3434<template >
3535 <NSectionBlock
36- v-if =" config"
3736 icon =" carbon-plug"
3837 text =" Plugins"
39- :description =" `Total plugins: ${config. plugins.length}`"
38+ :description =" `Total plugins: ${plugins.length}`"
4039 >
4140 <div pt4 >
4241 <PluginItem
You can’t perform that action at this time.
0 commit comments