webpack/index.js in katello-4.3.1 vs webpack/index.js in katello-4.4.0.rc1
- old
+ new
@@ -4,10 +4,12 @@
/* eslint-disable import/no-unresolved */
import componentRegistry from 'foremanReact/components/componentRegistry';
import Application from './containers/Application/index';
import Content from './scenes/SmartProxy/Content';
+import ChangeContentSource from './scenes/Hosts/ChangeContentSource';
+
import './redux';
// Not currently mocking anything
// import './services/api/setupMocks';
componentRegistry.register({
@@ -16,6 +18,11 @@
});
componentRegistry.register({
name: 'Content',
type: Content,
+});
+
+componentRegistry.register({
+ name: 'ChangeContentSource',
+ type: ChangeContentSource,
});