fix: allow spaces in tab names

Closes #52
This commit is contained in:
2026-01-21 19:00:08 -08:00
committed by Naomi Carrigan
parent ab3f6700f6
commit b954158ea7
@@ -126,6 +126,8 @@
} else if (event.key === "Escape") { } else if (event.key === "Escape") {
editingTabId = null; editingTabId = null;
editingName = ""; editingName = "";
} else if (event.key === " ") {
event.stopPropagation();
} }
} }