We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b93f91 commit 3aa7f7dCopy full SHA for 3aa7f7d
src/common/ToolBar.js
@@ -66,8 +66,16 @@ const MyLink = ({to, ...others }) =>{
66
}
67
68
const AllLinks = ({classes})=>{
69
- return LinkData.map((link,key)=><Button variant="text" color="primary" >
70
- <Link key={key} component={MyLink} to={link.to} color='textSecondary' underline="none" classes={{root:classes.link}} >{link.text}</Link>
+ return LinkData.map((link,key)=>
+ <Button variant="text" color="primary" key={key.toString()} >
71
+ <Link
72
+ component={MyLink} to={link.to}
73
+ color='textSecondary'
74
+ underline="none"
75
+ classes={{root:classes.link}}
76
+ >
77
+ {link.text}
78
+ </Link>
79
</Button>
80
)
81
0 commit comments