From 600d9a0f9453525c52ba6e74452cf9800735e2f0 Mon Sep 17 00:00:00 2001 From: Rafael Date: Mon, 23 May 2022 14:09:04 -0300 Subject: [PATCH] Fix Drag-and-drop error --- ui/component/claimList/view.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/component/claimList/view.jsx b/ui/component/claimList/view.jsx index fe07b40bd..50ed87f1f 100644 --- a/ui/component/claimList/view.jsx +++ b/ui/component/claimList/view.jsx @@ -309,7 +309,8 @@ export default function ClaimList(props: Props) { )} - {urisLength > 0 && ( + {/* the droppable element needs to be rendered even if empty otherwise logs error on console */} + {(urisLength > 0 || droppableProvided) && (