diff --git a/src/views/chart/ContentEdit/components/EditShortcutKey/ShortcutKeyModal.vue b/src/views/chart/ContentEdit/components/EditShortcutKey/ShortcutKeyModal.vue
index 330865b0..72cb812a 100644
--- a/src/views/chart/ContentEdit/components/EditShortcutKey/ShortcutKeyModal.vue
+++ b/src/views/chart/ContentEdit/components/EditShortcutKey/ShortcutKeyModal.vue
@@ -12,7 +12,12 @@
{{ item.label }} |
{{ item.win }} |
- {{ item.mac.substr(0,1) }} + {{ item.mac.substr(3) }} |
+
+ {{
+ item.mac.substr(0, 1)
+ }}
+ + {{ item.mac.substr(3) }}
+ |
@@ -55,7 +60,7 @@ const shortcutKeyOptions = [
},
{
label: '删除',
- win: 'Delete',
+ win: 'Delete'.toUpperCase(),
mac: `${MacKeyboard.CTRL.toUpperCase()} + Backspace `,
},
{
@@ -98,8 +103,5 @@ const closeHandle = () => {
td {
padding: 5px 10px;
}
- .fs {
- font-size: 22px
- }
}
\ No newline at end of file