17782: Disabling typechecking for some common Field component usage.
[arvados-workbench2.git] / src / components / popover / helpers.ts
index f2be98cfdaf69bd3c7eaaae61ab8c76a4a6b723d..ac860ac08f1bdc823898fbf1e557296e7685a669 100644 (file)
@@ -6,7 +6,10 @@ import { PopoverOrigin } from "@material-ui/core/Popover";
 
 export const createAnchorAt = (position: {x: number, y: number}) => {
     const el = document.createElement('div');
-    const clientRect = {
+    const clientRect: DOMRect = {
+        x: position.x,
+        y: position.y,
+        toJSON: () => '',
         left: position.x,
         right: position.x,
         top: position.y,