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-5.3.0 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-5.2.0 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-5.1.1 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-5.1.0 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-4.1.5 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-4.1.4 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-4.1.3 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-3.0.6 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-5.0.0 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-4.1.2 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-4.1.1 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-4.0.1 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-4.1.0 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-3.0.5 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-4.0.0 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-3.0.4 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-2.0.3 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-3.0.3 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-3.0.2 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js
foreman-tasks-3.0.1 webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js