diff --git a/frontend/app/components/wp-resizer/wp-resizer.directive.ts b/frontend/app/components/wp-resizer/wp-resizer.directive.ts index 4e4b3be315..224434663a 100644 --- a/frontend/app/components/wp-resizer/wp-resizer.directive.ts +++ b/frontend/app/components/wp-resizer/wp-resizer.directive.ts @@ -64,7 +64,7 @@ export class WorkPackageResizerController { // Change cursor icon // This is handled via JS to ensure // that the cursor stays the same even when the mouse leaves the actual resizer. - document.getElementsByTagName("body")[0].style.cursor = 'col-resize'; + document.getElementsByTagName("body")[0].style = 'cursor: col-resize !important'; // Enable mouse move window.addEventListener('mousemove', this.mouseMoveHandler);