Maybe this will appease the linter.
This commit is contained in:
parent
64b056d689
commit
5773d78464
1 changed files with 4 additions and 4 deletions
|
@ -778,13 +778,13 @@ class WidgetExplorer extends React.Component {
|
|||
return (<div>
|
||||
<div className="mx_Dialog_content">
|
||||
<FilteredList query={this.state.query} onChange={this.onQueryChange}>
|
||||
{widgets.map(w =>
|
||||
(<button
|
||||
{widgets.map(w => {
|
||||
return <button
|
||||
className='mx_DevTools_RoomStateExplorer_button'
|
||||
key={w.url + w.eventId}
|
||||
onClick={() => this.onEditWidget(w)}
|
||||
>{w.url}</button>)
|
||||
)}
|
||||
>{w.url}</button>;
|
||||
})}
|
||||
</FilteredList>
|
||||
</div>
|
||||
<div className="mx_Dialog_buttons">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue