diff --git a/client/coral-admin/src/routes/Community/components/Table.js b/client/coral-admin/src/routes/Community/components/Table.js
index ebe03c0af..009ff90de 100644
--- a/client/coral-admin/src/routes/Community/components/Table.js
+++ b/client/coral-admin/src/routes/Community/components/Table.js
@@ -15,7 +15,6 @@ const Table = ({headers, commenters, onHeaderClickHandler, onRoleChange, onComme
key={i}
className="mdl-data-table__cell--non-numeric"
scope="col"
- tabIndex="0"
onClick={() => onHeaderClickHandler({field: header.field})}>
{header.title}
@@ -25,11 +24,11 @@ const Table = ({headers, commenters, onHeaderClickHandler, onRoleChange, onComme
{commenters.map((row, i)=> (
- |
+ |
{row.profiles.map(({id}) => id)}
|
-
+ |
{row.created_at}
|
diff --git a/client/coral-ui/components/Dropdown.js b/client/coral-ui/components/Dropdown.js
index ec88cf1b2..20078e2a7 100644
--- a/client/coral-ui/components/Dropdown.js
+++ b/client/coral-ui/components/Dropdown.js
@@ -64,11 +64,11 @@ class Dropdown extends React.Component {
render() {
return (
-
+
{this.props.icon && }
{this.renderLabel()}
{this.state.isOpen ? : }
-
+
{React.Children.toArray(this.props.children)
.map((child) =>
React.cloneElement(child, {
diff --git a/client/coral-ui/components/Option.js b/client/coral-ui/components/Option.js
index b729fd287..e52c96e8a 100644
--- a/client/coral-ui/components/Option.js
+++ b/client/coral-ui/components/Option.js
@@ -4,7 +4,7 @@ import styles from './Option.css';
import cn from 'classnames';
const Option = ({className, label = '', onClick}) => (
- -
+
-
{label}
);
|