ywana-core8 0.0.498 → 0.0.499
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +5 -15338
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +5 -15329
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +9 -15333
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/site/site.js +2 -4
package/package.json
CHANGED
package/src/site/site.js
CHANGED
@@ -5,11 +5,9 @@ import { Header } from '../html/header'
|
|
5
5
|
import { Tooltip } from '../html/tooltip'
|
6
6
|
import { Page } from './page'
|
7
7
|
import { SiteContext } from './siteContext'
|
8
|
-
import './site.css'
|
9
|
-
|
10
8
|
import { ReactNotifications, Store } from 'react-notifications-component'
|
11
9
|
import 'react-notifications-component/dist/theme.css'
|
12
|
-
import
|
10
|
+
import './site.css'
|
13
11
|
|
14
12
|
|
15
13
|
|
@@ -329,7 +327,7 @@ const SiteConsole = () => {
|
|
329
327
|
<Icon icon="clear_all" size="small" clickable action={clear} />
|
330
328
|
</nav>
|
331
329
|
<main>
|
332
|
-
{context.consoleLines.map(line => <div>{line}</div>)}
|
330
|
+
{context.consoleLines.map((line,index) => <div key={`log-${index}`}>{line}</div>)}
|
333
331
|
</main>
|
334
332
|
</footer>
|
335
333
|
) : ''
|