Skip to content

Commit

Permalink
fix: Prevent default, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ramedina86 committed Nov 29, 2024
1 parent 0b7a639 commit 16b8f67
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "writer"
version = "0.8.0"
version = "0.8.1"
description = "An open-source, Python framework for building feature-rich apps that are fully integrated with the Writer platform."
authors = ["Writer, Inc."]
readme = "README.md"
Expand All @@ -17,7 +17,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 4 - Beta"
"Development Status :: 5 - Production/Stable"
]
packages = [
{ include = "writer", from = "src" }
Expand Down
1 change: 1 addition & 0 deletions src/ui/src/builder/panels/BuilderPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ function handleKeydown(ev: KeyboardEvent) {
const isMod = isModifierKeyActive(ev);
if (isMod && ev.key == props.keyboardShortcutKey.toLowerCase()) {
ev.preventDefault();
togglePanel(props.panelId);
return;
}
Expand Down

0 comments on commit 16b8f67

Please sign in to comment.