From b4f91f443ef941fa9587e0344cace1270186a54e Mon Sep 17 00:00:00 2001 From: Ramon Souza <contato@ramonsouza.com> Date: Thu, 8 Apr 2021 15:42:06 -0300 Subject: [PATCH] fix new poll key warning --- bigbluebutton-html5/imports/ui/components/poll/component.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bigbluebutton-html5/imports/ui/components/poll/component.jsx b/bigbluebutton-html5/imports/ui/components/poll/component.jsx index 0419329303..1543811cc1 100644 --- a/bigbluebutton-html5/imports/ui/components/poll/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/poll/component.jsx @@ -313,9 +313,8 @@ class Poll extends Component { if (o.val.length > 0) hasVal = true; const pollOptionKey = `poll-option-${i}`; return ( - <span> + <span key={pollOptionKey}> <div - key={pollOptionKey} style={{ display: 'flex', justifyContent: 'spaceBetween', -- GitLab