You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by hu...@apache.org on 2022/04/04 18:19:54 UTC

[superset] branch master updated: fix key reference (#19519)

This is an automated email from the ASF dual-hosted git repository.

hugh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new c2fae82fa6 fix key reference (#19519)
c2fae82fa6 is described below

commit c2fae82fa60f75023446a9b0940f437b4933d532
Author: Hugh A. Miles II <hu...@gmail.com>
AuthorDate: Mon Apr 4 14:19:46 2022 -0400

    fix key reference (#19519)
---
 superset-frontend/src/views/components/MenuRight.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset-frontend/src/views/components/MenuRight.tsx b/superset-frontend/src/views/components/MenuRight.tsx
index 6495b62912..4628a47e24 100644
--- a/superset-frontend/src/views/components/MenuRight.tsx
+++ b/superset-frontend/src/views/components/MenuRight.tsx
@@ -203,7 +203,7 @@ const RightMenu = ({
                       typeof item !== 'string' && item.name && item.perm ? (
                         <Fragment key={item.name}>
                           {idx === 2 && <Menu.Divider />}
-                          <Menu.Item>
+                          <Menu.Item key={item.name}>
                             {item.url ? (
                               <a href={item.url}> {item.label} </a>
                             ) : (