File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/ui/src/builder/panels Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44
55[tool .poetry ]
66name = " writer"
7- version = " 0.8.0 "
7+ version = " 0.8.1 "
88description = " An open-source, Python framework for building feature-rich apps that are fully integrated with the Writer platform."
99authors = [" Writer, Inc." ]
1010readme = " 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]
2222packages = [
2323 { include = " writer" , from = " src" }
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments