Sha256: 049bde1c93128b3dcb719a0fe345adc2df424444a0b51f880fd118fb6d31469e
Contents?: true
Size: 629 Bytes
Versions: 36
Compression:
Stored size: 629 Bytes
Contents
import React from 'react'; import { addGlobalFill } from 'foremanReact/components/common/Fill/GlobalFill'; import InventoryAutoUploadSwitcher from './ForemanInventoryUpload/SubscriptionsPageExtension/InventoryAutoUpload'; const fills = [ { slot: 'katello-manage-manifest-form', name: 'InventoryAutoUpload', component: () => <InventoryAutoUploadSwitcher />, weight: 50, }, ]; export const registerFills = () => { fills.forEach(({ slot, name, component: Component, weight }, index) => addGlobalFill( slot, name, <Component key={`rh-cloud-fill-${index}`} />, weight ) ); };
Version data entries
36 entries across 36 versions & 1 rubygems