Sha256: 3119a4a72542913e92614020aab11e9109fc2a365b29afd6dee22efca10e0a18
Contents?: true
Size: 892 Bytes
Versions: 119
Compression:
Stored size: 892 Bytes
Contents
import { translate as __ } from 'foremanReact/common/I18n'; import { headerFormatter, cellFormatter } from '../../../components/pf3Table'; 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
119 entries across 119 versions & 1 rubygems