Sha256: 62cffb2fa9ae15bf99dae4d8b8bca04181d8505d644f0f9c6f6c029350b5167f
Contents?: true
Size: 730 Bytes
Versions: 122
Compression:
Stored size: 730 Bytes
Contents
import React from 'react'; import { translate as __ } from 'foremanReact/common/I18n'; import { headerFormatter, cellFormatter, } from '../../../../components/pf3Table'; import ProfileRpmsCellFormatter from './ProfileRpmsCellFormatter'; const TableSchema = [ { property: 'name', header: { label: __('Name'), formatters: [headerFormatter], }, cell: { formatters: [cellFormatter], }, }, { property: 'rpms', header: { label: __('RPMs'), formatters: [headerFormatter], }, cell: { formatters: [ (value, { rowData }) => ( <ProfileRpmsCellFormatter rpms={rowData.rpms} /> ), ], }, }, ]; export default TableSchema;
Version data entries
122 entries across 122 versions & 1 rubygems