File tree 1 file changed +14
-6
lines changed
packages/app-frontend/src/features/inspector/custom
1 file changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import SplitPane from '@front/features/layout/SplitPane.vue'
3
3
import EmptyPane from ' @front/features/layout/EmptyPane.vue'
4
4
import CustomInspectorNode from ' ./CustomInspectorNode.vue'
5
5
import CustomInspectorSelectedNodePane from ' ./CustomInspectorSelectedNodePane.vue'
6
+ import PluginSourceIcon from ' ../../plugin/PluginSourceIcon.vue'
6
7
7
8
import { watch , ref , provide , defineComponent } from ' vue'
8
9
import { BridgeEvents } from ' @vue-devtools/shared-utils'
@@ -15,6 +16,7 @@ export default defineComponent({
15
16
EmptyPane ,
16
17
CustomInspectorNode ,
17
18
CustomInspectorSelectedNodePane ,
19
+ PluginSourceIcon ,
18
20
},
19
21
20
22
setup () {
@@ -86,12 +88,18 @@ export default defineComponent({
86
88
>
87
89
<template #left >
88
90
<div class =" flex flex-col h-full" >
89
- <VueInput
90
- v-model =" inspector.treeFilter"
91
- icon-left =" search"
92
- :placeholder =" inspector.treeFilterPlaceholder || 'Search...'"
93
- class =" search flat border-b border-gray-200 dark:border-gray-800 min-w-0"
94
- />
91
+ <div class =" border-b border-gray-200 dark:border-gray-800 flex items-center pr-2" >
92
+ <VueInput
93
+ v-model =" inspector.treeFilter"
94
+ icon-left =" search"
95
+ :placeholder =" inspector.treeFilterPlaceholder || 'Search...'"
96
+ class =" search flat min-w-0 flex-1"
97
+ />
98
+
99
+ <PluginSourceIcon
100
+ :plugin-id =" inspector.pluginId"
101
+ />
102
+ </div >
95
103
96
104
<div
97
105
ref =" treeScroller"
You can’t perform that action at this time.
0 commit comments