From 38ebef10d2b4a479f902158b78b07f9e53207e0b Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Fri, 6 Dec 2019 11:04:16 -0500 Subject: [PATCH] Revalidate after reversing ways via the One Way field --- modules/ui/fields/check.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/ui/fields/check.js b/modules/ui/fields/check.js index f98df7b09..58ea76334 100644 --- a/modules/ui/fields/check.js +++ b/modules/ui/fields/check.js @@ -150,6 +150,10 @@ export function uiFieldCheck(field, context) { actionReverse(_entityID), t('operations.reverse.annotation') ); + + // must manually revalidate since no 'change' event was called + context.validator().validate(); + d3_select(this) .call(reverserSetText); });