From ec30f0f33dff5e1259028cb9851b75f196c04529 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Thu, 5 Sep 2019 21:41:07 +0000 Subject: [PATCH] Fix typo (horizon*t*al) --- frontend/src/views/Reader.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/Reader.vue b/frontend/src/views/Reader.vue index ae7debf..998ebe8 100644 --- a/frontend/src/views/Reader.vue +++ b/frontend/src/views/Reader.vue @@ -110,7 +110,7 @@ export default { if (image.width < image.height) { this.orientation = 'vertical' } else if (image.width > image.height) { - this.orientation = 'horizonal' + this.orientation = 'horizontal' } else if (image.width === image.height) { this.orientation = 'square' }