From 754d3f79f825cf8e35040981fc01b74ef12a20b9 Mon Sep 17 00:00:00 2001 From: David Blatcher Date: Tue, 29 Oct 2024 09:19:51 +0000 Subject: [PATCH] linting --- kahuna/public/js/crop/controller.js | 2 +- kahuna/public/js/util/crop.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kahuna/public/js/crop/controller.js b/kahuna/public/js/crop/controller.js index 8dfe3de135..2443071982 100644 --- a/kahuna/public/js/crop/controller.js +++ b/kahuna/public/js/crop/controller.js @@ -64,7 +64,7 @@ crop.controller('ImageCropCtrl', [ disabled: storageCropType && storageCropType !== option.key })); - ctrl.cropType = storageCropType || storageDefaultCropType ||defaultCrop.key; + ctrl.cropType = storageCropType || storageDefaultCropType || defaultCrop.key; ctrl.image = image; ctrl.optimisedImageUri = optimisedImageUri; diff --git a/kahuna/public/js/util/crop.js b/kahuna/public/js/util/crop.js index 82572057e6..554c2f2936 100644 --- a/kahuna/public/js/util/crop.js +++ b/kahuna/public/js/util/crop.js @@ -90,7 +90,7 @@ cropUtil.factory('cropSettings', ['storage', function(storage) { } if (defaultCropType) { - setDefaultCropType(defaultCropType) + setDefaultCropType(defaultCropType); } if (shouldShowCropGuttersIfApplicable) {