Skip to content

Commit

Permalink
#531 Fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmartin committed Jul 15, 2021
1 parent ae4a41b commit 515232c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/interface/VFBTermInfo/VFBTermInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ class VFBTermInfoWidget extends React.Component {
* Fire event to set the Shift key as not pressed, this is needed since the presence of the
* confirm() dialog prevents the DOM to un-set the 'shift' key.
*/
var e = new KeyboardEvent('keyup', {bubbles : true, cancelable : true, shiftKey : false});
var e = new KeyboardEvent('keyup', { bubbles : true, cancelable : true, shiftKey : false });
document.querySelector("body").dispatchEvent(e);

$("body").css("cursor", "progress");
Expand Down

0 comments on commit 515232c

Please sign in to comment.