katello 3.7.1.1 → 3.8.0.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of katello might be problematic. Click here for more details.

Files changed (187) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -7
  3. data/app/assets/javascripts/katello/common/index.js +0 -1
  4. data/app/assets/javascripts/katello/sync_management/index.js +0 -1
  5. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +477 -0
  6. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +1 -1
  7. data/app/controllers/katello/api/v2/activation_keys_controller.rb +2 -2
  8. data/app/controllers/katello/api/v2/api_controller.rb +3 -1
  9. data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -1
  10. data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +1 -1
  11. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +15 -1
  12. data/app/controllers/katello/api/v2/environments_controller.rb +5 -2
  13. data/app/controllers/katello/api/v2/errata_controller.rb +48 -34
  14. data/app/controllers/katello/api/v2/gpg_keys_controller.rb +1 -1
  15. data/app/controllers/katello/api/v2/host_collections_controller.rb +1 -1
  16. data/app/controllers/katello/api/v2/host_packages_controller.rb +5 -1
  17. data/app/controllers/katello/api/v2/organizations_controller.rb +1 -1
  18. data/app/controllers/katello/api/v2/packages_controller.rb +33 -22
  19. data/app/controllers/katello/api/v2/products_controller.rb +1 -1
  20. data/app/controllers/katello/api/v2/repositories_controller.rb +6 -5
  21. data/app/controllers/katello/api/v2/repository_sets_controller.rb +1 -10
  22. data/app/controllers/katello/api/v2/sync_plans_controller.rb +1 -1
  23. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +20 -12
  24. data/app/controllers/katello/remote_execution_controller.rb +6 -6
  25. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +9 -37
  26. data/app/lib/actions/katello/content_view/promote.rb +6 -2
  27. data/app/lib/actions/katello/content_view_version/after_promote_hook.rb +11 -0
  28. data/app/lib/actions/katello/content_view_version/before_promote_hook.rb +11 -0
  29. data/app/lib/actions/katello/host/remove_subscriptions.rb +1 -1
  30. data/app/lib/actions/pulp/consumer/abstract_content_action.rb +0 -12
  31. data/app/lib/actions/pulp/consumer/content_install.rb +1 -1
  32. data/app/lib/actions/pulp/consumer/content_uninstall.rb +1 -1
  33. data/app/lib/actions/pulp/consumer/content_update.rb +1 -1
  34. data/app/lib/katello/resources/registry.rb +40 -0
  35. data/app/lib/katello/util/package.rb +9 -4
  36. data/app/models/katello/concerns/subscription_facet_host_extensions.rb +1 -1
  37. data/app/models/katello/content_view.rb +4 -12
  38. data/app/models/katello/content_view_version.rb +26 -0
  39. data/app/models/katello/glue/candlepin/owner.rb +8 -0
  40. data/app/models/katello/glue/candlepin/pool.rb +11 -11
  41. data/app/models/katello/glue/candlepin/repository.rb +1 -1
  42. data/app/models/katello/glue/pulp/repos.rb +1 -0
  43. data/app/models/katello/host/content_facet.rb +1 -2
  44. data/app/models/katello/kt_environment.rb +6 -0
  45. data/app/models/katello/product_content.rb +1 -4
  46. data/app/models/katello/repository.rb +2 -0
  47. data/app/models/katello/rpm.rb +118 -14
  48. data/app/services/katello/puppet_class_importer_extensions.rb +17 -20
  49. data/app/services/katello/ui_notifications/pulp/proxy_disk_space.rb +1 -3
  50. data/app/views/katello/api/v2/common/copy.json.rabl +3 -0
  51. data/app/views/katello/api/v2/environments/show.json.rabl +1 -1
  52. data/app/views/katello/api/v2/repositories/base.json.rabl +1 -0
  53. data/app/views/katello/api/v2/repositories/show.json.rabl +4 -2
  54. data/app/views/overrides/activation_keys/_host_environment_select.html.erb +3 -2
  55. data/config/katello.yaml +89 -0
  56. data/config/routes.rb +0 -1
  57. data/config/routes/api/registry.rb +29 -0
  58. data/config/routes/api/v2.rb +1 -1
  59. data/db/migrate/20180612163403_add_foreign_key_to_hypervisor_id.rb +0 -3
  60. data/db/migrate/20180614184822_add_unauthenticated_pull.rb +9 -0
  61. data/db/migrate/20180618195941_add_description_to_repository.rb +5 -0
  62. data/db/seeds.d/75-job_templates.rb +2 -5
  63. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-repository-sets-modal.controller.js +3 -4
  64. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-subscriptions-modal.controller.js +1 -4
  65. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html +1 -1
  66. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register.controller.js +1 -1
  67. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +1 -1
  68. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-add-subscriptions.controller.js +1 -1
  69. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +1 -0
  70. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js +32 -18
  71. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html +1 -1
  72. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html +2 -0
  73. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-details.html +32 -23
  74. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +6 -0
  75. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +8 -0
  76. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery.controller.js +1 -1
  77. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html +1 -1
  78. data/engines/bastion_katello/app/assets/stylesheets/bastion_katello/bastion_katello.scss +0 -5
  79. data/lib/katello/engine.rb +1 -0
  80. data/lib/katello/permission_creator.rb +2 -0
  81. data/lib/katello/permissions/registry_permissions.rb +20 -0
  82. data/lib/katello/plugin.rb +1 -0
  83. data/lib/katello/tasks/clean_backend_objects.rake +3 -12
  84. data/lib/katello/version.rb +1 -1
  85. data/package.json +7 -10
  86. data/webpack/components/Search/Search.test.js +1 -3
  87. data/webpack/containers/Application/config.js +2 -9
  88. data/webpack/containers/Application/index.js +2 -4
  89. data/webpack/mockRequest.js +3 -3
  90. data/webpack/move_to_foreman/common/helpers.js +8 -45
  91. data/webpack/move_to_foreman/components/common/{EmptyState → emptyState}/index.js +3 -16
  92. data/webpack/move_to_foreman/components/common/table/components/Table.js +1 -1
  93. data/webpack/move_to_foreman/components/common/table/components/__snapshots__/CollapseSubscriptionGroupButton.test.js.snap +2 -2
  94. data/webpack/move_to_foreman/components/common/table/components/__snapshots__/TableSelectionCell.test.js.snap +1 -1
  95. data/webpack/move_to_foreman/components/common/table/components/__snapshots__/TableSelectionHeaderCell.test.js.snap +1 -1
  96. data/webpack/move_to_pf/LoadingState/LoadingState.js +14 -27
  97. data/webpack/move_to_pf/LoadingState/LoadingState.test.js +4 -8
  98. data/webpack/move_to_pf/react-bootstrap-select/index.js +1 -12
  99. data/webpack/redux/actions/RedHatRepositories/enabled.js +1 -0
  100. data/webpack/redux/actions/RedHatRepositories/helpers.js +5 -5
  101. data/webpack/redux/actions/RedHatRepositories/sets.js +1 -1
  102. data/webpack/redux/consts.js +0 -6
  103. data/webpack/redux/reducers/index.js +0 -2
  104. data/webpack/scenes/RedHatRepositories/components/EnabledRepository.js +23 -14
  105. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepository.js +1 -1
  106. data/webpack/scenes/RedHatRepositories/components/SearchBar.js +0 -1
  107. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RecommendedRepositorySetsToggler.test.js.snap +1 -3
  108. data/webpack/scenes/RedHatRepositories/index.js +3 -7
  109. data/webpack/scenes/RedHatRepositories/index.scss +0 -1
  110. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailActions.js +8 -3
  111. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailReducer.js +1 -30
  112. data/webpack/scenes/Subscriptions/Details/SubscriptionDetails.js +28 -111
  113. data/webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailReducer.test.js +1 -3
  114. data/webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetails.test.js +1 -6
  115. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetails.test.js.snap +424 -519
  116. data/webpack/scenes/Subscriptions/Details/__tests__/subscriptionDetails.fixtures.js +4 -7
  117. data/webpack/scenes/Subscriptions/Details/index.js +3 -5
  118. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +34 -78
  119. data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +24 -5
  120. data/webpack/scenes/Subscriptions/Manifest/ManifestHistoryReducer.js +1 -9
  121. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +0 -3
  122. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManifestActions.test.js +8 -20
  123. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManifestHistoryReducer.test.js +1 -3
  124. data/webpack/scenes/Subscriptions/Manifest/__tests__/__snapshots__/ManageManifestModal.test.js.snap +7 -34
  125. data/webpack/scenes/Subscriptions/Manifest/__tests__/manifest.fixtures.js +16 -9
  126. data/webpack/scenes/Subscriptions/Manifest/index.js +0 -1
  127. data/webpack/scenes/Subscriptions/SubscriptionActions.js +26 -5
  128. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +0 -1
  129. data/webpack/scenes/Subscriptions/SubscriptionHelpers.js +0 -3
  130. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +4 -11
  131. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +36 -31
  132. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsActions.js +12 -3
  133. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +27 -57
  134. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsReducer.js +3 -2
  135. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsTableSchema.js +5 -10
  136. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsActions.test.js +5 -10
  137. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsPage.test.js +4 -49
  138. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsReducer.test.js +3 -8
  139. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +11 -21
  140. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/upstreamSubscriptions.fixtures.js +8 -5
  141. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +0 -2
  142. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsReducer.test.js +3 -9
  143. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +2 -14
  144. data/webpack/scenes/Subscriptions/__tests__/subscriptions.fixtures.js +17 -11
  145. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/EntitlementsInlineEditFormatter.js +5 -8
  146. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js +58 -45
  147. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableHelpers.js +4 -11
  148. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js +2 -2
  149. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js +3 -16
  150. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +365 -392
  151. data/webpack/scenes/Subscriptions/index.js +0 -1
  152. data/webpack/services/api/fixtures.js +353 -0
  153. data/webpack/services/api/index.js +1 -17
  154. data/webpack/test_setup.js +0 -2
  155. metadata +16 -37
  156. data/config/katello.yml +0 -59
  157. data/webpack/__mocks__/foremanReact/components/BreadcrumbBar.js +0 -3
  158. data/webpack/__mocks__/foremanReact/redux.js +0 -3
  159. data/webpack/__mocks__/foremanReact/redux/actions/toasts.js +0 -8
  160. data/webpack/components/SelectOrg/SelectOrg.scss +0 -3
  161. data/webpack/components/SelectOrg/SelectOrgAction.js +0 -41
  162. data/webpack/components/SelectOrg/SelectOrgReducer.js +0 -33
  163. data/webpack/components/SelectOrg/SetOrganization.js +0 -116
  164. data/webpack/components/WithOrganization/withOrganization.js +0 -28
  165. data/webpack/global_test_setup.js +0 -6
  166. data/webpack/helpers/caret.js +0 -6
  167. data/webpack/move_to_pf/Select/Select.js +0 -40
  168. data/webpack/scenes/Products/ProductActions.js +0 -24
  169. data/webpack/scenes/Products/ProductConstants.js +0 -3
  170. data/webpack/scenes/Products/__tests__/ProductActions.test.js +0 -40
  171. data/webpack/scenes/Products/__tests__/products.fixtures.js +0 -90
  172. data/webpack/scenes/RedHatRepositories/components/EnabledRepositoryContent.js +0 -34
  173. data/webpack/scenes/RedHatRepositories/components/__tests__/EnabledRepository.test.js +0 -36
  174. data/webpack/scenes/RedHatRepositories/components/__tests__/EnabledRepositoryContent.test.js +0 -27
  175. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/EnabledRepository.test.js.snap +0 -25
  176. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/EnabledRepositoryContent.test.js.snap +0 -47
  177. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailEnabledProducts.js +0 -54
  178. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailProduct.js +0 -29
  179. data/webpack/scenes/Subscriptions/Details/SubscriptionDetails.scss +0 -9
  180. data/webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailEnabledProducts.test.js +0 -18
  181. data/webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProduct.test.js +0 -13
  182. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailEnabledProducts.test.js.snap +0 -45
  183. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailProduct.test.js.snap +0 -67
  184. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/EntitlementsInlineEditFormatter.test.js +0 -110
  185. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/EntitlementsInlineEditFormatter.test.js.snap +0 -228
  186. data/webpack/scenes/Tasks/helpers.js +0 -52
  187. data/webpack/services/api/testHelpers.js +0 -28
@@ -30,9 +30,7 @@ describe('subscriptions reducer', () => {
30
30
  const error = 'nothing worked';
31
31
  expect(reducer(initialState, {
32
32
  type: types.SUBSCRIPTION_DETAILS_FAILURE,
33
- payload: {
34
- message: error,
35
- },
33
+ error,
36
34
  })).toEqual({
37
35
  ...initialState,
38
36
  error,
@@ -5,9 +5,7 @@ import SubscriptionDetails from '../SubscriptionDetails';
5
5
  import SubscriptionDetailAssociations from '../SubscriptionDetailAssociations';
6
6
  import SubscriptionDetailInfo from '../SubscriptionDetailInfo';
7
7
  import SubscriptionDetailProducts from '../SubscriptionDetailProducts';
8
- import SubscriptionDetailEnabledProducts from '../SubscriptionDetailEnabledProducts';
9
8
  import { loadSubscriptionDetails } from '../SubscriptionDetailActions';
10
- import { loadProducts } from '../../../Products/ProductActions';
11
9
  import { successState } from './subscriptionDetails.fixtures';
12
10
 
13
11
  jest.mock('../../../../move_to_foreman/foreman_toast_notifications');
@@ -15,19 +13,16 @@ jest.mock('../../../../move_to_foreman/foreman_toast_notifications');
15
13
  describe('subscriptions details page', () => {
16
14
  it('should render and contain appropiate components', async () => {
17
15
  const match = { params: { id: 1 } };
18
- const noop = () => {};
19
16
 
20
17
  const wrapper = shallow(<SubscriptionDetails
21
18
  loadSubscriptionDetails={loadSubscriptionDetails}
22
- loadProducts={loadProducts}
23
19
  subscriptionDetails={successState}
24
- history={{ push: noop }}
25
20
  match={match}
26
21
  />);
22
+ expect(wrapper.find('h1').text()).toEqual(successState.name);
27
23
  expect(wrapper.find(SubscriptionDetailAssociations)).toHaveLength(1);
28
24
  expect(wrapper.find(SubscriptionDetailInfo)).toHaveLength(1);
29
25
  expect(wrapper.find(SubscriptionDetailProducts)).toHaveLength(1);
30
- expect(wrapper.find(SubscriptionDetailEnabledProducts)).toHaveLength(1);
31
26
  expect(toJson(wrapper)).toMatchSnapshot();
32
27
  });
33
28
  });
@@ -1,527 +1,432 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
3
  exports[`subscriptions details page should render and contain appropiate components 1`] = `
4
- <div>
5
- <BreadcrumbsBar
6
- data={
7
- Object {
8
- "breadcrumbItems": Array [
9
- Object {
10
- "caption": "Subscriptions",
11
- "onClick": [Function],
12
- },
13
- Object {
14
- "caption": "OpenShift Employee Subscription",
15
- },
16
- ],
17
- "isSwitchable": true,
18
- "resource": Object {
19
- "nameField": "name",
20
- "resourceUrl": "/katello/api/v2/subscriptions",
21
- "switcherItemUrl": "/subscriptions/:id",
22
- },
23
- }
24
- }
25
- onSwitcherItemClick={[Function]}
26
- />
27
- <Uncontrolled(TabContainer)
28
- defaultActiveKey={1}
29
- id="subscription-tabs-container"
30
- >
31
- <div>
32
- <LoadingState
33
- loading={false}
34
- loadingText="Loading"
35
- timeout={300}
4
+ <Grid
5
+ bsClass="container-fluid"
6
+ componentClass="div"
7
+ fluid={false}
8
+ >
9
+ <div>
10
+ <LoadingState
11
+ loading={false}
12
+ loadingText="Loading"
13
+ >
14
+ <Row
15
+ bsClass="row"
16
+ componentClass="div"
36
17
  >
37
- <Nav
38
- bsClass="nav nav-tabs"
39
- justified={false}
40
- pullLeft={false}
41
- pullRight={false}
42
- stacked={false}
18
+ <Col
19
+ bsClass="col"
20
+ componentClass="div"
21
+ sm={12}
22
+ >
23
+ <h1>
24
+ OpenShift Employee Subscription
25
+ </h1>
26
+ </Col>
27
+ </Row>
28
+ <Row
29
+ bsClass="row"
30
+ componentClass="div"
31
+ >
32
+ <Col
33
+ bsClass="col"
34
+ componentClass="div"
35
+ sm={6}
43
36
  >
44
- <NavItem
45
- active={false}
46
- disabled={false}
47
- eventKey={1}
48
- >
49
- <div>
50
- Details
51
- </div>
52
- </NavItem>
53
- <NavItem
54
- active={false}
55
- disabled={false}
56
- eventKey={2}
57
- >
58
- <div>
59
- Enabled Products
60
- </div>
61
- </NavItem>
62
- </Nav>
63
- <Grid
64
- bsClass="container-fluid"
37
+ <SubscriptionDetailInfo
38
+ subscriptionDetails={
39
+ Object {
40
+ "account_number": 1212729,
41
+ "activation_keys": Array [],
42
+ "arch": "ia64,ppc,ppc64,ppc64le,s390,s390x,x86,x86_64",
43
+ "available": 1,
44
+ "consumed": 0,
45
+ "contract_number": 10126160,
46
+ "cores": 4,
47
+ "cp_id": "4028f92a6317cfbd0163b419377f3bee",
48
+ "description": "OpenShift Enterprise",
49
+ "end_date": "2021-12-31 23:59:59 -0500",
50
+ "error": null,
51
+ "host_count": 0,
52
+ "id": 48,
53
+ "instance_multiplier": 1,
54
+ "loading": false,
55
+ "multi_entitlement": true,
56
+ "name": "OpenShift Employee Subscription",
57
+ "product_id": "SER0421",
58
+ "product_name": "OpenShift Employee Subscription",
59
+ "provided_products": Array [
60
+ Object {
61
+ "id": 1,
62
+ "name": "Red Hat OpenShift Container Platform",
63
+ },
64
+ Object {
65
+ "id": 2,
66
+ "name": "Oracle Java for RHEL Server",
67
+ },
68
+ Object {
69
+ "id": 3,
70
+ "name": "Red Hat OpenShift Enterprise JBoss EAP add-on",
71
+ },
72
+ Object {
73
+ "id": 4,
74
+ "name": "Red Hat CloudForms Beta",
75
+ },
76
+ Object {
77
+ "id": 5,
78
+ "name": "Red Hat CloudForms",
79
+ },
80
+ Object {
81
+ "id": 6,
82
+ "name": "Red Hat OpenShift Enterprise Client Tools",
83
+ },
84
+ Object {
85
+ "id": 7,
86
+ "name": "Red Hat Enterprise Linux Atomic Host",
87
+ },
88
+ Object {
89
+ "id": 8,
90
+ "name": "JBoss Enterprise Application Platform",
91
+ },
92
+ Object {
93
+ "id": 9,
94
+ "name": "Red Hat JBoss AMQ Clients",
95
+ },
96
+ Object {
97
+ "id": 10,
98
+ "name": "Red Hat Beta",
99
+ },
100
+ Object {
101
+ "id": 11,
102
+ "name": "Red Hat OpenShift Enterprise Infrastructure",
103
+ },
104
+ Object {
105
+ "id": 12,
106
+ "name": "Red Hat Enterprise Linux Fast Datapath Beta",
107
+ },
108
+ Object {
109
+ "id": 13,
110
+ "name": "Red Hat Ansible Engine",
111
+ },
112
+ Object {
113
+ "id": 14,
114
+ "name": "Red Hat OpenShift Enterprise Application Node",
115
+ },
116
+ Object {
117
+ "id": 15,
118
+ "name": "Red Hat OpenShift Enterprise JBoss FUSE add-on",
119
+ },
120
+ Object {
121
+ "id": 16,
122
+ "name": "Red Hat Software Collections Beta for RHEL Server",
123
+ },
124
+ Object {
125
+ "id": 17,
126
+ "name": "Red Hat Software Collections for RHEL Server",
127
+ },
128
+ Object {
129
+ "id": 18,
130
+ "name": "Red Hat Enterprise Linux Fast Datapath",
131
+ },
132
+ Object {
133
+ "id": 19,
134
+ "name": "Red Hat Enterprise Linux Server",
135
+ },
136
+ Object {
137
+ "id": 20,
138
+ "name": "Red Hat OpenShift Enterprise JBoss A-MQ add-on",
139
+ },
140
+ Object {
141
+ "id": 21,
142
+ "name": "JBoss Enterprise Web Server",
143
+ },
144
+ Object {
145
+ "id": 22,
146
+ "name": "Red Hat JBoss Core Services",
147
+ },
148
+ ],
149
+ "quantity": 1,
150
+ "ram": null,
151
+ "sockets": null,
152
+ "stacking_id": "SER0421",
153
+ "start_date": "2013-03-01 00:00:00 -0500",
154
+ "subscription_id": 3,
155
+ "support_level": "Self-Support",
156
+ "support_type": "L1-L3",
157
+ "type": "NORMAL",
158
+ "unmapped_guest": false,
159
+ "upstream": true,
160
+ "virt_only": false,
161
+ "virt_who": false,
162
+ }
163
+ }
164
+ />
165
+ </Col>
166
+ <Col
167
+ bsClass="col"
65
168
  componentClass="div"
66
- fluid={false}
169
+ sm={6}
67
170
  >
68
- <TabContent
69
- animation={false}
70
- bsClass="tab"
71
- componentClass="div"
72
- mountOnEnter={false}
73
- unmountOnExit={false}
74
- >
75
- <TabPane
76
- bsClass="tab-pane"
77
- eventKey={1}
78
- >
79
- <div>
80
- <Row
81
- bsClass="row"
82
- componentClass="div"
83
- >
84
- <Col
85
- bsClass="col"
86
- componentClass="div"
87
- sm={6}
88
- >
89
- <SubscriptionDetailInfo
90
- subscriptionDetails={
91
- Object {
92
- "account_number": 1212729,
93
- "activation_keys": Array [],
94
- "arch": "ia64,ppc,ppc64,ppc64le,s390,s390x,x86,x86_64",
95
- "available": 1,
96
- "consumed": 0,
97
- "contract_number": 10126160,
98
- "cores": 4,
99
- "cp_id": "4028f92a6317cfbd0163b419377f3bee",
100
- "description": "OpenShift Enterprise",
101
- "enabledProducts": Object {
102
- "results": Array [],
103
- "total": 0,
104
- },
105
- "end_date": "2021-12-31 23:59:59 -0500",
106
- "error": null,
107
- "host_count": 0,
108
- "id": 48,
109
- "instance_multiplier": 1,
110
- "loading": false,
111
- "multi_entitlement": true,
112
- "name": "OpenShift Employee Subscription",
113
- "product_id": "SER0421",
114
- "product_name": "OpenShift Employee Subscription",
115
- "provided_products": Array [
116
- Object {
117
- "id": 1,
118
- "name": "Red Hat OpenShift Container Platform",
119
- },
120
- Object {
121
- "id": 2,
122
- "name": "Oracle Java for RHEL Server",
123
- },
124
- Object {
125
- "id": 3,
126
- "name": "Red Hat OpenShift Enterprise JBoss EAP add-on",
127
- },
128
- Object {
129
- "id": 4,
130
- "name": "Red Hat CloudForms Beta",
131
- },
132
- Object {
133
- "id": 5,
134
- "name": "Red Hat CloudForms",
135
- },
136
- Object {
137
- "id": 6,
138
- "name": "Red Hat OpenShift Enterprise Client Tools",
139
- },
140
- Object {
141
- "id": 7,
142
- "name": "Red Hat Enterprise Linux Atomic Host",
143
- },
144
- Object {
145
- "id": 8,
146
- "name": "JBoss Enterprise Application Platform",
147
- },
148
- Object {
149
- "id": 9,
150
- "name": "Red Hat JBoss AMQ Clients",
151
- },
152
- Object {
153
- "id": 10,
154
- "name": "Red Hat Beta",
155
- },
156
- Object {
157
- "id": 11,
158
- "name": "Red Hat OpenShift Enterprise Infrastructure",
159
- },
160
- Object {
161
- "id": 12,
162
- "name": "Red Hat Enterprise Linux Fast Datapath Beta",
163
- },
164
- Object {
165
- "id": 13,
166
- "name": "Red Hat Ansible Engine",
167
- },
168
- Object {
169
- "id": 14,
170
- "name": "Red Hat OpenShift Enterprise Application Node",
171
- },
172
- Object {
173
- "id": 15,
174
- "name": "Red Hat OpenShift Enterprise JBoss FUSE add-on",
175
- },
176
- Object {
177
- "id": 16,
178
- "name": "Red Hat Software Collections Beta for RHEL Server",
179
- },
180
- Object {
181
- "id": 17,
182
- "name": "Red Hat Software Collections for RHEL Server",
183
- },
184
- Object {
185
- "id": 18,
186
- "name": "Red Hat Enterprise Linux Fast Datapath",
187
- },
188
- Object {
189
- "id": 19,
190
- "name": "Red Hat Enterprise Linux Server",
191
- },
192
- Object {
193
- "id": 20,
194
- "name": "Red Hat OpenShift Enterprise JBoss A-MQ add-on",
195
- },
196
- Object {
197
- "id": 21,
198
- "name": "JBoss Enterprise Web Server",
199
- },
200
- Object {
201
- "id": 22,
202
- "name": "Red Hat JBoss Core Services",
203
- },
204
- ],
205
- "quantity": 1,
206
- "ram": null,
207
- "sockets": null,
208
- "stacking_id": "SER0421",
209
- "start_date": "2013-03-01 00:00:00 -0500",
210
- "subscription_id": 3,
211
- "support_level": "Self-Support",
212
- "support_type": "L1-L3",
213
- "type": "NORMAL",
214
- "unmapped_guest": false,
215
- "upstream": true,
216
- "virt_only": false,
217
- "virt_who": false,
218
- }
219
- }
220
- />
221
- </Col>
222
- <Col
223
- bsClass="col"
224
- componentClass="div"
225
- sm={6}
226
- >
227
- <SubscriptionDetailAssociations
228
- subscriptionDetails={
229
- Object {
230
- "account_number": 1212729,
231
- "activation_keys": Array [],
232
- "arch": "ia64,ppc,ppc64,ppc64le,s390,s390x,x86,x86_64",
233
- "available": 1,
234
- "consumed": 0,
235
- "contract_number": 10126160,
236
- "cores": 4,
237
- "cp_id": "4028f92a6317cfbd0163b419377f3bee",
238
- "description": "OpenShift Enterprise",
239
- "enabledProducts": Object {
240
- "results": Array [],
241
- "total": 0,
242
- },
243
- "end_date": "2021-12-31 23:59:59 -0500",
244
- "error": null,
245
- "host_count": 0,
246
- "id": 48,
247
- "instance_multiplier": 1,
248
- "loading": false,
249
- "multi_entitlement": true,
250
- "name": "OpenShift Employee Subscription",
251
- "product_id": "SER0421",
252
- "product_name": "OpenShift Employee Subscription",
253
- "provided_products": Array [
254
- Object {
255
- "id": 1,
256
- "name": "Red Hat OpenShift Container Platform",
257
- },
258
- Object {
259
- "id": 2,
260
- "name": "Oracle Java for RHEL Server",
261
- },
262
- Object {
263
- "id": 3,
264
- "name": "Red Hat OpenShift Enterprise JBoss EAP add-on",
265
- },
266
- Object {
267
- "id": 4,
268
- "name": "Red Hat CloudForms Beta",
269
- },
270
- Object {
271
- "id": 5,
272
- "name": "Red Hat CloudForms",
273
- },
274
- Object {
275
- "id": 6,
276
- "name": "Red Hat OpenShift Enterprise Client Tools",
277
- },
278
- Object {
279
- "id": 7,
280
- "name": "Red Hat Enterprise Linux Atomic Host",
281
- },
282
- Object {
283
- "id": 8,
284
- "name": "JBoss Enterprise Application Platform",
285
- },
286
- Object {
287
- "id": 9,
288
- "name": "Red Hat JBoss AMQ Clients",
289
- },
290
- Object {
291
- "id": 10,
292
- "name": "Red Hat Beta",
293
- },
294
- Object {
295
- "id": 11,
296
- "name": "Red Hat OpenShift Enterprise Infrastructure",
297
- },
298
- Object {
299
- "id": 12,
300
- "name": "Red Hat Enterprise Linux Fast Datapath Beta",
301
- },
302
- Object {
303
- "id": 13,
304
- "name": "Red Hat Ansible Engine",
305
- },
306
- Object {
307
- "id": 14,
308
- "name": "Red Hat OpenShift Enterprise Application Node",
309
- },
310
- Object {
311
- "id": 15,
312
- "name": "Red Hat OpenShift Enterprise JBoss FUSE add-on",
313
- },
314
- Object {
315
- "id": 16,
316
- "name": "Red Hat Software Collections Beta for RHEL Server",
317
- },
318
- Object {
319
- "id": 17,
320
- "name": "Red Hat Software Collections for RHEL Server",
321
- },
322
- Object {
323
- "id": 18,
324
- "name": "Red Hat Enterprise Linux Fast Datapath",
325
- },
326
- Object {
327
- "id": 19,
328
- "name": "Red Hat Enterprise Linux Server",
329
- },
330
- Object {
331
- "id": 20,
332
- "name": "Red Hat OpenShift Enterprise JBoss A-MQ add-on",
333
- },
334
- Object {
335
- "id": 21,
336
- "name": "JBoss Enterprise Web Server",
337
- },
338
- Object {
339
- "id": 22,
340
- "name": "Red Hat JBoss Core Services",
341
- },
342
- ],
343
- "quantity": 1,
344
- "ram": null,
345
- "sockets": null,
346
- "stacking_id": "SER0421",
347
- "start_date": "2013-03-01 00:00:00 -0500",
348
- "subscription_id": 3,
349
- "support_level": "Self-Support",
350
- "support_type": "L1-L3",
351
- "type": "NORMAL",
352
- "unmapped_guest": false,
353
- "upstream": true,
354
- "virt_only": false,
355
- "virt_who": false,
356
- }
357
- }
358
- />
359
- <SubscriptionDetailProducts
360
- subscriptionDetails={
361
- Object {
362
- "account_number": 1212729,
363
- "activation_keys": Array [],
364
- "arch": "ia64,ppc,ppc64,ppc64le,s390,s390x,x86,x86_64",
365
- "available": 1,
366
- "consumed": 0,
367
- "contract_number": 10126160,
368
- "cores": 4,
369
- "cp_id": "4028f92a6317cfbd0163b419377f3bee",
370
- "description": "OpenShift Enterprise",
371
- "enabledProducts": Object {
372
- "results": Array [],
373
- "total": 0,
374
- },
375
- "end_date": "2021-12-31 23:59:59 -0500",
376
- "error": null,
377
- "host_count": 0,
378
- "id": 48,
379
- "instance_multiplier": 1,
380
- "loading": false,
381
- "multi_entitlement": true,
382
- "name": "OpenShift Employee Subscription",
383
- "product_id": "SER0421",
384
- "product_name": "OpenShift Employee Subscription",
385
- "provided_products": Array [
386
- Object {
387
- "id": 1,
388
- "name": "Red Hat OpenShift Container Platform",
389
- },
390
- Object {
391
- "id": 2,
392
- "name": "Oracle Java for RHEL Server",
393
- },
394
- Object {
395
- "id": 3,
396
- "name": "Red Hat OpenShift Enterprise JBoss EAP add-on",
397
- },
398
- Object {
399
- "id": 4,
400
- "name": "Red Hat CloudForms Beta",
401
- },
402
- Object {
403
- "id": 5,
404
- "name": "Red Hat CloudForms",
405
- },
406
- Object {
407
- "id": 6,
408
- "name": "Red Hat OpenShift Enterprise Client Tools",
409
- },
410
- Object {
411
- "id": 7,
412
- "name": "Red Hat Enterprise Linux Atomic Host",
413
- },
414
- Object {
415
- "id": 8,
416
- "name": "JBoss Enterprise Application Platform",
417
- },
418
- Object {
419
- "id": 9,
420
- "name": "Red Hat JBoss AMQ Clients",
421
- },
422
- Object {
423
- "id": 10,
424
- "name": "Red Hat Beta",
425
- },
426
- Object {
427
- "id": 11,
428
- "name": "Red Hat OpenShift Enterprise Infrastructure",
429
- },
430
- Object {
431
- "id": 12,
432
- "name": "Red Hat Enterprise Linux Fast Datapath Beta",
433
- },
434
- Object {
435
- "id": 13,
436
- "name": "Red Hat Ansible Engine",
437
- },
438
- Object {
439
- "id": 14,
440
- "name": "Red Hat OpenShift Enterprise Application Node",
441
- },
442
- Object {
443
- "id": 15,
444
- "name": "Red Hat OpenShift Enterprise JBoss FUSE add-on",
445
- },
446
- Object {
447
- "id": 16,
448
- "name": "Red Hat Software Collections Beta for RHEL Server",
449
- },
450
- Object {
451
- "id": 17,
452
- "name": "Red Hat Software Collections for RHEL Server",
453
- },
454
- Object {
455
- "id": 18,
456
- "name": "Red Hat Enterprise Linux Fast Datapath",
457
- },
458
- Object {
459
- "id": 19,
460
- "name": "Red Hat Enterprise Linux Server",
461
- },
462
- Object {
463
- "id": 20,
464
- "name": "Red Hat OpenShift Enterprise JBoss A-MQ add-on",
465
- },
466
- Object {
467
- "id": 21,
468
- "name": "JBoss Enterprise Web Server",
469
- },
470
- Object {
471
- "id": 22,
472
- "name": "Red Hat JBoss Core Services",
473
- },
474
- ],
475
- "quantity": 1,
476
- "ram": null,
477
- "sockets": null,
478
- "stacking_id": "SER0421",
479
- "start_date": "2013-03-01 00:00:00 -0500",
480
- "subscription_id": 3,
481
- "support_level": "Self-Support",
482
- "support_type": "L1-L3",
483
- "type": "NORMAL",
484
- "unmapped_guest": false,
485
- "upstream": true,
486
- "virt_only": false,
487
- "virt_who": false,
488
- }
489
- }
490
- />
491
- </Col>
492
- </Row>
493
- </div>
494
- </TabPane>
495
- <TabPane
496
- bsClass="tab-pane"
497
- eventKey={2}
498
- >
499
- <div>
500
- <Row
501
- bsClass="row"
502
- componentClass="div"
503
- >
504
- <Col
505
- bsClass="col"
506
- componentClass="div"
507
- sm={12}
508
- >
509
- <SubscriptionDetailEnabledProducts
510
- enabledProducts={
511
- Object {
512
- "results": Array [],
513
- "total": 0,
514
- }
515
- }
516
- />
517
- </Col>
518
- </Row>
519
- </div>
520
- </TabPane>
521
- </TabContent>
522
- </Grid>
523
- </LoadingState>
524
- </div>
525
- </Uncontrolled(TabContainer)>
526
- </div>
171
+ <SubscriptionDetailAssociations
172
+ subscriptionDetails={
173
+ Object {
174
+ "account_number": 1212729,
175
+ "activation_keys": Array [],
176
+ "arch": "ia64,ppc,ppc64,ppc64le,s390,s390x,x86,x86_64",
177
+ "available": 1,
178
+ "consumed": 0,
179
+ "contract_number": 10126160,
180
+ "cores": 4,
181
+ "cp_id": "4028f92a6317cfbd0163b419377f3bee",
182
+ "description": "OpenShift Enterprise",
183
+ "end_date": "2021-12-31 23:59:59 -0500",
184
+ "error": null,
185
+ "host_count": 0,
186
+ "id": 48,
187
+ "instance_multiplier": 1,
188
+ "loading": false,
189
+ "multi_entitlement": true,
190
+ "name": "OpenShift Employee Subscription",
191
+ "product_id": "SER0421",
192
+ "product_name": "OpenShift Employee Subscription",
193
+ "provided_products": Array [
194
+ Object {
195
+ "id": 1,
196
+ "name": "Red Hat OpenShift Container Platform",
197
+ },
198
+ Object {
199
+ "id": 2,
200
+ "name": "Oracle Java for RHEL Server",
201
+ },
202
+ Object {
203
+ "id": 3,
204
+ "name": "Red Hat OpenShift Enterprise JBoss EAP add-on",
205
+ },
206
+ Object {
207
+ "id": 4,
208
+ "name": "Red Hat CloudForms Beta",
209
+ },
210
+ Object {
211
+ "id": 5,
212
+ "name": "Red Hat CloudForms",
213
+ },
214
+ Object {
215
+ "id": 6,
216
+ "name": "Red Hat OpenShift Enterprise Client Tools",
217
+ },
218
+ Object {
219
+ "id": 7,
220
+ "name": "Red Hat Enterprise Linux Atomic Host",
221
+ },
222
+ Object {
223
+ "id": 8,
224
+ "name": "JBoss Enterprise Application Platform",
225
+ },
226
+ Object {
227
+ "id": 9,
228
+ "name": "Red Hat JBoss AMQ Clients",
229
+ },
230
+ Object {
231
+ "id": 10,
232
+ "name": "Red Hat Beta",
233
+ },
234
+ Object {
235
+ "id": 11,
236
+ "name": "Red Hat OpenShift Enterprise Infrastructure",
237
+ },
238
+ Object {
239
+ "id": 12,
240
+ "name": "Red Hat Enterprise Linux Fast Datapath Beta",
241
+ },
242
+ Object {
243
+ "id": 13,
244
+ "name": "Red Hat Ansible Engine",
245
+ },
246
+ Object {
247
+ "id": 14,
248
+ "name": "Red Hat OpenShift Enterprise Application Node",
249
+ },
250
+ Object {
251
+ "id": 15,
252
+ "name": "Red Hat OpenShift Enterprise JBoss FUSE add-on",
253
+ },
254
+ Object {
255
+ "id": 16,
256
+ "name": "Red Hat Software Collections Beta for RHEL Server",
257
+ },
258
+ Object {
259
+ "id": 17,
260
+ "name": "Red Hat Software Collections for RHEL Server",
261
+ },
262
+ Object {
263
+ "id": 18,
264
+ "name": "Red Hat Enterprise Linux Fast Datapath",
265
+ },
266
+ Object {
267
+ "id": 19,
268
+ "name": "Red Hat Enterprise Linux Server",
269
+ },
270
+ Object {
271
+ "id": 20,
272
+ "name": "Red Hat OpenShift Enterprise JBoss A-MQ add-on",
273
+ },
274
+ Object {
275
+ "id": 21,
276
+ "name": "JBoss Enterprise Web Server",
277
+ },
278
+ Object {
279
+ "id": 22,
280
+ "name": "Red Hat JBoss Core Services",
281
+ },
282
+ ],
283
+ "quantity": 1,
284
+ "ram": null,
285
+ "sockets": null,
286
+ "stacking_id": "SER0421",
287
+ "start_date": "2013-03-01 00:00:00 -0500",
288
+ "subscription_id": 3,
289
+ "support_level": "Self-Support",
290
+ "support_type": "L1-L3",
291
+ "type": "NORMAL",
292
+ "unmapped_guest": false,
293
+ "upstream": true,
294
+ "virt_only": false,
295
+ "virt_who": false,
296
+ }
297
+ }
298
+ />
299
+ <SubscriptionDetailProducts
300
+ subscriptionDetails={
301
+ Object {
302
+ "account_number": 1212729,
303
+ "activation_keys": Array [],
304
+ "arch": "ia64,ppc,ppc64,ppc64le,s390,s390x,x86,x86_64",
305
+ "available": 1,
306
+ "consumed": 0,
307
+ "contract_number": 10126160,
308
+ "cores": 4,
309
+ "cp_id": "4028f92a6317cfbd0163b419377f3bee",
310
+ "description": "OpenShift Enterprise",
311
+ "end_date": "2021-12-31 23:59:59 -0500",
312
+ "error": null,
313
+ "host_count": 0,
314
+ "id": 48,
315
+ "instance_multiplier": 1,
316
+ "loading": false,
317
+ "multi_entitlement": true,
318
+ "name": "OpenShift Employee Subscription",
319
+ "product_id": "SER0421",
320
+ "product_name": "OpenShift Employee Subscription",
321
+ "provided_products": Array [
322
+ Object {
323
+ "id": 1,
324
+ "name": "Red Hat OpenShift Container Platform",
325
+ },
326
+ Object {
327
+ "id": 2,
328
+ "name": "Oracle Java for RHEL Server",
329
+ },
330
+ Object {
331
+ "id": 3,
332
+ "name": "Red Hat OpenShift Enterprise JBoss EAP add-on",
333
+ },
334
+ Object {
335
+ "id": 4,
336
+ "name": "Red Hat CloudForms Beta",
337
+ },
338
+ Object {
339
+ "id": 5,
340
+ "name": "Red Hat CloudForms",
341
+ },
342
+ Object {
343
+ "id": 6,
344
+ "name": "Red Hat OpenShift Enterprise Client Tools",
345
+ },
346
+ Object {
347
+ "id": 7,
348
+ "name": "Red Hat Enterprise Linux Atomic Host",
349
+ },
350
+ Object {
351
+ "id": 8,
352
+ "name": "JBoss Enterprise Application Platform",
353
+ },
354
+ Object {
355
+ "id": 9,
356
+ "name": "Red Hat JBoss AMQ Clients",
357
+ },
358
+ Object {
359
+ "id": 10,
360
+ "name": "Red Hat Beta",
361
+ },
362
+ Object {
363
+ "id": 11,
364
+ "name": "Red Hat OpenShift Enterprise Infrastructure",
365
+ },
366
+ Object {
367
+ "id": 12,
368
+ "name": "Red Hat Enterprise Linux Fast Datapath Beta",
369
+ },
370
+ Object {
371
+ "id": 13,
372
+ "name": "Red Hat Ansible Engine",
373
+ },
374
+ Object {
375
+ "id": 14,
376
+ "name": "Red Hat OpenShift Enterprise Application Node",
377
+ },
378
+ Object {
379
+ "id": 15,
380
+ "name": "Red Hat OpenShift Enterprise JBoss FUSE add-on",
381
+ },
382
+ Object {
383
+ "id": 16,
384
+ "name": "Red Hat Software Collections Beta for RHEL Server",
385
+ },
386
+ Object {
387
+ "id": 17,
388
+ "name": "Red Hat Software Collections for RHEL Server",
389
+ },
390
+ Object {
391
+ "id": 18,
392
+ "name": "Red Hat Enterprise Linux Fast Datapath",
393
+ },
394
+ Object {
395
+ "id": 19,
396
+ "name": "Red Hat Enterprise Linux Server",
397
+ },
398
+ Object {
399
+ "id": 20,
400
+ "name": "Red Hat OpenShift Enterprise JBoss A-MQ add-on",
401
+ },
402
+ Object {
403
+ "id": 21,
404
+ "name": "JBoss Enterprise Web Server",
405
+ },
406
+ Object {
407
+ "id": 22,
408
+ "name": "Red Hat JBoss Core Services",
409
+ },
410
+ ],
411
+ "quantity": 1,
412
+ "ram": null,
413
+ "sockets": null,
414
+ "stacking_id": "SER0421",
415
+ "start_date": "2013-03-01 00:00:00 -0500",
416
+ "subscription_id": 3,
417
+ "support_level": "Self-Support",
418
+ "support_type": "L1-L3",
419
+ "type": "NORMAL",
420
+ "unmapped_guest": false,
421
+ "upstream": true,
422
+ "virt_only": false,
423
+ "virt_who": false,
424
+ }
425
+ }
426
+ />
427
+ </Col>
428
+ </Row>
429
+ </LoadingState>
430
+ </div>
431
+ </Grid>
527
432
  `;