Skip to content

Commit

Permalink
fix(module: image-picker): fix rotate not work (#717)
Browse files Browse the repository at this point in the history
  • Loading branch information
nuonuoge authored Jul 1, 2020
1 parent d6ecd5d commit 364d368
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/image-picker/image-picker.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export class ImagePickerComponent {
return {
type: 'img',
backgroundImage: 'url(' + item.url + ')',
transform: 'rotate(' + this.getRotation(item.orientation) + ')deg'
transform: 'rotate(' + this.getRotation(item.orientation) + 'deg)'
};
});
if (this._selectable) {
Expand Down

0 comments on commit 364d368

Please sign in to comment.