From cea2dd9ab949a67d2587c09436a1e0baee2fd6a5 Mon Sep 17 00:00:00 2001 From: Paul Kaplan <pkaplan@media.mit.edu> Date: Fri, 21 Jun 2019 09:45:23 -0400 Subject: [PATCH] Fix spacing --- src/components/library/library.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/library/library.jsx b/src/components/library/library.jsx index 628e62ded..13736d60f 100644 --- a/src/components/library/library.jsx +++ b/src/components/library/library.jsx @@ -185,7 +185,7 @@ class LibraryComponent extends React.Component { id={index} insetIconURL={dataItem.insetIconURL} internetConnectionRequired={dataItem.internetConnectionRequired} - key={typeof dataItem.name === 'string' ? dataItem.name : dataItem.rawURL} + key={typeof dataItem.name === 'string' ? dataItem.name : dataItem.rawURL} name={dataItem.name} onMouseEnter={this.handleMouseEnter} onMouseLeave={this.handleMouseLeave} -- GitLab