diff --git a/src/components/input/editor.vue b/src/components/input/editor.vue
index ab4383fa..e2ec5d66 100644
--- a/src/components/input/editor.vue
+++ b/src/components/input/editor.vue
@@ -16,14 +16,29 @@
{{ emptyText }}
- {{ $t('input.editor.edit') }}.
+
+ {{ $t('input.editor.edit') }}
+ .
-
- {{ $t('input.editor.edit') }}
- {{ $t('misc.save') }}
+
+ {{ $t('input.editor.edit') }}
+
+
+ {{ $t('misc.save') }}
+
-
{{ action.title }}
@@ -32,7 +47,11 @@
-
- {{ $t('input.editor.edit') }}
+
+ {{ $t('input.editor.edit') }}
+
diff --git a/src/directives/shortcut.ts b/src/directives/shortcut.ts
index 842e05ec..001ed960 100644
--- a/src/directives/shortcut.ts
+++ b/src/directives/shortcut.ts
@@ -4,6 +4,9 @@ import {isAppleDevice} from '@/helpers/isAppleDevice'
const directive: Directive = {
mounted(el, {value}) {
+ if(value === '') {
+ return
+ }
if (isAppleDevice() && value.includes('Control')) {
value = value.replace('Control', 'Meta')
}
diff --git a/src/i18n/lang/en.json b/src/i18n/lang/en.json
index 7158efcd..0653cfcf 100644
--- a/src/i18n/lang/en.json
+++ b/src/i18n/lang/en.json
@@ -873,7 +873,8 @@
"related": "Modify related tasks of this task",
"color": "Change the color of this task",
"move": "Move this task to another list",
- "reminder": "Manage reminders of this task"
+ "reminder": "Manage reminders of this task",
+ "description": "Toggle editing of the task description"
},
"list": {
"title": "List Views",