Sha256: b9b3d61fa2d256b2a18a5ee1d1a22b6ac01a1cd9fe579627ef738d56ea6a54f4

Contents?: true

Size: 580 Bytes

Versions: 62

Compression:

Stored size: 580 Bytes

Contents

import React from 'react';
import { translate as __ } from 'foremanReact/common/I18n';
import TableSelectionCell from '../Components/TableSelectionCell';

export default (selectionController, additionalData) => (
  <TableSelectionCell
    id={`select${additionalData.rowIndex}`}
    disabled={!additionalData.rowData.canEdit}
    title={
      additionalData.rowData.canEdit
        ? undefined
        : __('You do not have permission')
    }
    checked={selectionController.isSelected(additionalData)}
    onChange={() => selectionController.selectRow(additionalData)}
  />
);

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
foreman-tasks-10.0.2 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-10.0.1 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-10.0.0 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-9.2.3 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-9.2.2 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-9.2.1 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-9.2.0 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-9.1.1 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-9.0.4 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-9.1.0 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-9.0.2 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-9.0.1 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-8.3.3 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-9.0.0 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-8.2.1 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-8.1.4 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-8.3.2 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-8.3.1 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-8.1.3 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-8.3.0 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js