Hide current parent for merge options

This commit is contained in:
Christopher Pitt 2015-04-23 16:47:54 +12:00
parent 5130ed4e28
commit 97498cc3f6
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ class GridFieldMergeAction implements GridField_ColumnProvider, GridField_Action
*/
public function getColumnContent($gridField, $record, $columnName) {
if($columnName === 'MergeAction') {
$dropdown = new DropdownField('Target', 'Target', $this->records->map());
$dropdown = new DropdownField('Target', 'Target', $this->records->exclude('ID', $record->ID)->map());
$prefix = strtolower($this->parentMethod . '-' . $this->childMethod);