From ed329c629984f90e58abad0a617eebd60a88067a Mon Sep 17 00:00:00 2001 From: Alfred Melch Date: Mon, 20 Apr 2020 08:54:26 +0200 Subject: [PATCH] fix property name --- src/context.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context.js b/src/context.js index 817384d..73b3079 100644 --- a/src/context.js +++ b/src/context.js @@ -18,7 +18,7 @@ export function alignChild(parent, child, container, alignments, containment) { if (containment.invertH && overflows.h) { alignments = invertH(alignments) } - if (containment.inoverV && overflows.v) { + if (containment.invertV && overflows.v) { alignments = invertV(alignments) } childRect = calculatePosition(parentRect, childRect, alignments)