Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
dblatcher committed Oct 29, 2024
1 parent a6d84f1 commit 754d3f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kahuna/public/js/crop/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion kahuna/public/js/util/crop.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ cropUtil.factory('cropSettings', ['storage', function(storage) {
}

if (defaultCropType) {
setDefaultCropType(defaultCropType)
setDefaultCropType(defaultCropType);
}

if (shouldShowCropGuttersIfApplicable) {
Expand Down

0 comments on commit 754d3f7

Please sign in to comment.