mirror of
https://github.com/mue/mue.git
synced 2026-07-19 15:04:11 +02:00
perf: experimental upgrade to deps and fix esbuild warnings
This commit is contained in:
@@ -74,7 +74,9 @@ export default class Widgets extends PureComponent {
|
||||
<div id="widgets">
|
||||
<Suspense fallback={<></>}>
|
||||
{this.enabled('searchBar') ? <Search /> : null}
|
||||
{this.state.order.map((element) => this.widgets[element])}
|
||||
{this.state.order.map((element, key) => (
|
||||
<Fragment key={key}>{this.widgets[element]}</Fragment>
|
||||
))}
|
||||
{this.enabled('weatherEnabled') && this.online ? <Weather /> : null}
|
||||
</Suspense>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user