"Provide feedback" drawer widget does not collapse automatically when page is changedDescriptionThe "Provide feedback" drawer widget in the Employee Center portal does not collapse automatically when page is changed and the "Provide feedback" text remains visible in the middle of the screen.Steps to Reproduce Take any OOB instance on Zurich with Employee Center Pro Plugin version : 38.1.01. Login into the instance2. Go to ESC portal3. Click on "Provide feedback" drawer widget 4. Now, click on any other tab or any clickable area.6. The "Provide feedback" text remains visible in the middle of the screen.WorkaroundThis is a known issue on the Experience Feedback Drawer widget introduced in EC Pro version 38.1.0 . The adds the following missing CSS reset in Link script inside $locationChangeStart before the delayed popoverIsOpen = false : the fix: if (controller.popoverIsOpen) { var drawerContainer = angular.element('.feedback-drawer-container'); var nowAssistPanel = document.getElementById('sn-na-dw-wrapper'); if (controller.nowAssistState.isPinned && nowAssistPanel) { var nowAssistWidth = controller.nowAssistState.width; drawerContainer.css('right', 'calc(' + controller.DRAWER_WIDTH + ' + ' + nowAssistWidth + 'px)'); } else { drawerContainer.css('right', controller.DRAWER_WIDTH); // resets to -60rem } angular.element('.feedback-drawer-container').css('z-index', controller.data.feedbackContainerZindex.low); } placed before the delayed popoverIsOpen: controller.timeout(function() { controller.popoverIsOpen = false; }, 500); The fix will be available in future releases of Employee Center Pro.Related Problem: PRB2029652