mirror of
https://github.com/element-hq/element-web
synced 2024-11-29 04:48:50 +03:00
Appease the linter
This commit is contained in:
parent
254e0b9a94
commit
64b056d689
1 changed files with 2 additions and 2 deletions
|
@ -779,11 +779,11 @@ class WidgetExplorer extends React.Component {
|
||||||
<div className="mx_Dialog_content">
|
<div className="mx_Dialog_content">
|
||||||
<FilteredList query={this.state.query} onChange={this.onQueryChange}>
|
<FilteredList query={this.state.query} onChange={this.onQueryChange}>
|
||||||
{widgets.map(w =>
|
{widgets.map(w =>
|
||||||
<button
|
(<button
|
||||||
className='mx_DevTools_RoomStateExplorer_button'
|
className='mx_DevTools_RoomStateExplorer_button'
|
||||||
key={w.url + w.eventId}
|
key={w.url + w.eventId}
|
||||||
onClick={() => this.onEditWidget(w)}
|
onClick={() => this.onEditWidget(w)}
|
||||||
>{w.url}</button>
|
>{w.url}</button>)
|
||||||
)}
|
)}
|
||||||
</FilteredList>
|
</FilteredList>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue