Skip to content

Commit bf48afc

Browse files
author
Cam Tullos
committed
published @atomic-reactor/[email protected]
1 parent 07e5945 commit bf48afc

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

docs/api_project.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ define({
88
apidoc: '0.3.0',
99
generator: {
1010
name: 'apidoc',
11-
time: '2021-01-13T14:02:49.679Z',
11+
time: '2021-01-13T14:47:50.224Z',
1212
url: 'http://apidocjs.com',
1313
version: '0.20.1',
1414
},

docs/api_project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"apidoc": "0.3.0",
99
"generator": {
1010
"name": "apidoc",
11-
"time": "2021-01-13T14:02:49.679Z",
11+
"time": "2021-01-13T14:47:50.224Z",
1212
"url": "http://apidocjs.com",
1313
"version": "0.20.1"
1414
}

src/app/components/common-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@atomic-reactor/reactium-ui",
3-
"version": "0.2.6",
3+
"version": "0.2.8",
44
"main": "index.js",
55
"author": "Reactium LLC",
66
"dependencies": {

src/app/components/common-ui/reactium-plugin/reactium-hooks.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ const ReactiumUI = require('../index');
44
const priority = Reactium.Enums.priority.lowest;
55

66
Reactium.Plugin.register('ReactiumUI', priority).then(() => {
7-
Reactium.Hook.runSync('reactium-ui', ReactiumUI);
87
Reactium.Component.register('ReactiumUI', ReactiumUI);
8+
Reactium.Hook.register('app-ready', () => {
9+
Reactium.Hook.runSync('reactium-ui', ReactiumUI);
10+
});
911
});

0 commit comments

Comments
 (0)