Skip to content

Commit 65bcfbb

Browse files
authored
Merge pull request #664 from writer/dev
chore: Merge for release
2 parents 076db22 + 64608cc commit 65bcfbb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "writer"
7-
version = "0.8.0"
7+
version = "0.8.1"
88
description = "An open-source, Python framework for building feature-rich apps that are fully integrated with the Writer platform."
99
authors = ["Writer, Inc."]
1010
readme = "README.md"
@@ -17,7 +17,7 @@ classifiers = [
1717
"Programming Language :: Python :: 3.10",
1818
"Programming Language :: Python :: 3.11",
1919
"Programming Language :: Python :: 3.12",
20-
"Development Status :: 4 - Beta"
20+
"Development Status :: 5 - Production/Stable"
2121
]
2222
packages = [
2323
{ include = "writer", from = "src" }

src/ui/src/builder/panels/BuilderPanel.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ function handleKeydown(ev: KeyboardEvent) {
100100
const isMod = isModifierKeyActive(ev);
101101
102102
if (isMod && ev.key == props.keyboardShortcutKey.toLowerCase()) {
103+
ev.preventDefault();
103104
togglePanel(props.panelId);
104105
return;
105106
}

0 commit comments

Comments
 (0)