Sha256: af943810ef935eae8288285ba82352e1ac8a89d50cd096f1a3860eca5c5b5628

Contents?: true

Size: 852 Bytes

Versions: 9

Compression:

Stored size: 852 Bytes

Contents

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

9 entries across 9 versions & 1 rubygems

Version Path
katello-3.8.1 webpack/scenes/Subscriptions/Manifest/ManifestHistoryTableSchema.js
katello-3.7.1.1 webpack/scenes/Subscriptions/Manifest/ManifestHistoryTableSchema.js
katello-3.7.1 webpack/scenes/Subscriptions/Manifest/ManifestHistoryTableSchema.js
katello-3.8.0 webpack/scenes/Subscriptions/Manifest/ManifestHistoryTableSchema.js
katello-3.8.0.rc3 webpack/scenes/Subscriptions/Manifest/ManifestHistoryTableSchema.js
katello-3.8.0.rc2 webpack/scenes/Subscriptions/Manifest/ManifestHistoryTableSchema.js
katello-3.7.0 webpack/scenes/Subscriptions/Manifest/ManifestHistoryTableSchema.js
katello-3.8.0.rc1 webpack/scenes/Subscriptions/Manifest/ManifestHistoryTableSchema.js
katello-3.7.0.rc2 webpack/scenes/Subscriptions/Manifest/ManifestHistoryTableSchema.js