@@ -19,7 +19,7 @@ watchEffect(() => {
19
19
})
20
20
21
21
const tabClass =
22
- ' w-20 border rounded p1 hover:bg-gray hover:bg-opacity-20 hover:border-white/20'
22
+ ' border rounded-full w-7 h-7 items-center flex justify-center hover:bg-gray hover:bg-opacity-20 hover:border-white/20'
23
23
const tabSelectedClass = ' bg-$c-text-base! text-$c-bg-base'
24
24
25
25
const errorString = computed (() => {
@@ -85,13 +85,13 @@ watch(outputView, (view) => {
85
85
:class =" [tabClass, outputView === 'tree' && tabSelectedClass]"
86
86
@click =" toggleView('tree')"
87
87
>
88
- Tree
88
+ < div i-ri:node-tree />
89
89
</button >
90
90
<button
91
91
:class =" [tabClass, outputView === 'json' && tabSelectedClass]"
92
92
@click =" toggleView('json')"
93
93
>
94
- JSON
94
+ < div i-ri:braces-line />
95
95
</button >
96
96
</div >
97
97
<label >
@@ -115,14 +115,6 @@ watch(outputView, (view) => {
115
115
/>
116
116
Hide location data
117
117
</label >
118
- <label >
119
- Hide keys:
120
- <input
121
- v-model =" hideKeysValue"
122
- type =" input"
123
- placeholder =" field1, field2, ..."
124
- />
125
- </label >
126
118
<button
127
119
flex =" ~ y-center"
128
120
gap1
@@ -137,6 +129,14 @@ watch(outputView, (view) => {
137
129
<div i-ri:printer-line />
138
130
Print in Console
139
131
</button >
132
+ <label >
133
+ Hide keys:
134
+ <input
135
+ v-model =" hideKeysValue"
136
+ type =" input"
137
+ placeholder =" field1, field2, ..."
138
+ />
139
+ </label >
140
140
</div >
141
141
<div flex =" ~ 1" min-h-0 min-w-0 >
142
142
<Loading v-if =" loading" >
0 commit comments