Skip to content

Commit

Permalink
feat: change order
Browse files Browse the repository at this point in the history
  • Loading branch information
sanchezcarlosjr committed Oct 20, 2023
1 parent ea1876d commit 3aa1c0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/notebook/cellTypes/CodeBlock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ export class CodeBlock extends InteractiveBlock {
const wrapper = super.renderSettings();
let languagesSelect = document.createElement("select");
languagesSelect.classList.add("small");
for (const language of ["javascript", "python", "html", 'sql', 'javascript main thread']) {
for (const language of ["javascript", "python", "html", 'sql', 'javascript webworker']) {
const option = document.createElement("option");
option.value = language;
option.innerText = language;
Expand Down

0 comments on commit 3aa1c0e

Please sign in to comment.