File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ const Sidebar = ({
86
86
placeholder = "Command"
87
87
value = { command }
88
88
onChange = { ( e ) => setCommand ( e . target . value ) }
89
+ className = "font-mono"
89
90
/>
90
91
</ div >
91
92
< div className = "space-y-2" >
@@ -94,6 +95,7 @@ const Sidebar = ({
94
95
placeholder = "Arguments (space-separated)"
95
96
value = { args }
96
97
onChange = { ( e ) => setArgs ( e . target . value ) }
98
+ className = "font-mono"
97
99
/>
98
100
</ div >
99
101
</ >
@@ -104,6 +106,7 @@ const Sidebar = ({
104
106
placeholder = "URL"
105
107
value = { sseUrl }
106
108
onChange = { ( e ) => setSseUrl ( e . target . value ) }
109
+ className = "font-mono"
107
110
/>
108
111
</ div >
109
112
) }
@@ -135,6 +138,7 @@ const Sidebar = ({
135
138
newEnv [ e . target . value ] = value ;
136
139
setEnv ( newEnv ) ;
137
140
} }
141
+ className = "font-mono"
138
142
/>
139
143
< Input
140
144
placeholder = "Value"
@@ -144,6 +148,7 @@ const Sidebar = ({
144
148
newEnv [ key ] = e . target . value ;
145
149
setEnv ( newEnv ) ;
146
150
} }
151
+ className = "font-mono"
147
152
/>
148
153
</ div >
149
154
< Button
You can’t perform that action at this time.
0 commit comments