Skip to content

Commit

Permalink
switching the order
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinkhill committed Jun 9, 2024
1 parent 4dfe368 commit dd98948
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/TheEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
:transition="false"
@close="close"
@keydown.esc="escClose"
@keydown.ctrl.s.prevent="save(null)"
@keydown.meta.s.prevent="save(null)"
@keydown.ctrl.shift.s.prevent="restartServiceNameExists && save(restartServiceName)"
@keydown.meta.shift.s.prevent="restartServiceNameExists && save(restartServiceName)">
@keydown.meta.shift.s.prevent="restartServiceNameExists && save(restartServiceName)"
@keydown.ctrl.s.prevent="save(null)"
@keydown.meta.s.prevent="save(null)">
<panel
card-class="editor-dialog"
:icon="isWriteable ? mdiFileDocumentEditOutline : mdiFileDocumentOutline"
Expand Down

0 comments on commit dd98948

Please sign in to comment.