We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60e62b7 commit 0149705Copy full SHA for 0149705
client/src/components/Item/EditDialogComponent.vue
@@ -3,7 +3,8 @@
3
v-model="showDialog"
4
persistent
5
max-width="500"
6
- @keydown.esc="onCancelItemForm">
+ @keydown.esc="onCancelItemForm"
7
+ @keydown.enter="onSaveItemForm">
8
<v-card>
9
<v-card-title class="headline grey lighten-2">
10
<span v-if="formItem && formItem._id">{{ $t('edit-item-dialog.existing-title') }}</span>
client/src/components/List/EditDialogComponent.vue
- @keydown.esc="onCancelListForm">
+ @keydown.esc="onCancelListForm"
+ @keydown.enter="onSaveListForm">
<span>{{ $t('edit-list-dialog.existing-title') }}</span>
0 commit comments