We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 870884b commit bc4664bCopy full SHA for bc4664b
src/components/repl.tsx
@@ -316,9 +316,9 @@ export const Repl: Component<ReplProps> = (props) => {
316
fallback={<span>.{tab.type}</span>}
317
>
318
<select
319
- class="bg-none p-0"
+ class="dark:bg-gray-700 bg-none p-0"
320
value={tab.type}
321
- onChange={(e) => {
+ onBlur={(e) => {
322
setEdit(-1);
323
actions.setTabType(id(tab), e.currentTarget.value);
324
}}
0 commit comments