diff --git a/frontend/src/components/files/Preview.vue b/frontend/src/components/files/Preview.vue index f72ad38b..8b42a0da 100644 --- a/frontend/src/components/files/Preview.vue +++ b/frontend/src/components/files/Preview.vue @@ -177,6 +177,8 @@ export default { if (this.hasNext) this.next() } else if (event.which === 37) { // left arrow if (this.hasPrevious) this.prev() + } else if (event.which === 27) { // esc + this.back() } }, async updatePreview () {