We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fb93ea commit e5f4dd3Copy full SHA for e5f4dd3
src/components/ImageEditor.vue
@@ -207,7 +207,10 @@ export default {
207
208
// Key Handlers, override default Viewer arrow and escape key
209
handleKeydown(event) {
210
- event.stopImmediatePropagation()
+ // Enter needs to be reached through as otherwise saving text does not work
211
+ if (event.key !== 'Enter') {
212
+ event.stopImmediatePropagation()
213
+ }
214
// escape key
215
if (event.key === 'Escape') {
216
// Since we cannot call the closeMethod and know if there
0 commit comments