Sha256: 9c91efcb951f6120f3c2ceffcb9b1162f3df9a50b9b72a9b58c8d9a42e1e9309
Contents?: true
Size: 912 Bytes
Versions: 60
Compression:
Stored size: 912 Bytes
Contents
import { translate as __ } from 'foremanReact/common/I18n'; import { headerFormatter, cellFormatter } from '../../../move_to_foreman/components/common/table'; export const columns = [ { property: 'status', header: { label: __('Status'), formatters: [headerFormatter], props: { index: 0, }, }, cell: { formatters: [cellFormatter], }, }, { property: 'statusMessage', header: { label: __('Message'), formatters: [headerFormatter], props: { index: 1, }, }, cell: { formatters: [cellFormatter], }, }, // TODO: use date formatter from tomas' PR { property: 'created', header: { label: __('Timestamp'), formatters: [headerFormatter], props: { index: 2, }, }, cell: { formatters: [cellFormatter], }, }, ]; export default columns;
Version data entries
60 entries across 60 versions & 1 rubygems