Profile Picture Issue - Portal PageIssue Profile picture is showing up upside down in Service Portal. CauseThis happens due to EXIF (exchangeable image file format) rotation which are tags put into images by smart devices (phones, tablets) that indicate how the device was rotated when the photo was taken.ResolutionThere are 2 possible solutions for this behavior: 1. You could open the image in the paint application and save it without making any other changes. Paint will reset all the EXIF orientation present in the original image. 2.If you change the following line in the client controller of the "User profile" widget:from:var avatarPicture = response.data.result.avatar.replace("?t=small", "");to: var avatarPicture = response.data.result.avatar.replace("?t=small", "?t=medium");