Skip to content

Commit

Permalink
cs fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
luanfreitasdev committed Jul 19, 2021
1 parent 426ab37 commit 4c4d2dc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/Column.php
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ public function makeInputRange( string $dataField = '', string $thousands = '',
public function makeInputText( string $dataField = '' ): Column
{
$this->inputs['input_text']['enabled'] = true;
$this->dataField = $dataField;
$this->dataField = $dataField;

return $this;
}
Expand Down Expand Up @@ -282,7 +282,7 @@ public function makeBooleanFilter(string $dataField = '' , string $trueLabel = '
$this->inputs['boolean_filter']['false_label'] = $falseLabel;
$this->inputs['boolean_filter']['class'] = $settings['class'] ?? '';
$this->inputs['boolean_filter']['live-search'] = $settings['live-search'] ?? true;
$this->dataField = $dataField;
$this->dataField = $dataField;

return $this;
}
Expand Down
8 changes: 4 additions & 4 deletions src/PowerGridComponent.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ class PowerGridComponent extends Component

protected $listeners = [
'eventChangeDatePiker' => 'eventChangeDatePiker',
'eventChangeInput' => 'eventChangeInput',
'eventToggleChanged' => 'eventChangeInput',
'eventMultiSelect' => 'eventMultiSelect',
'eventRefresh' => '$refresh',
'eventChangeInput' => 'eventChangeInput',
'eventToggleChanged' => 'eventChangeInput',
'eventMultiSelect' => 'eventMultiSelect',
'eventRefresh' => '$refresh',
];

/**
Expand Down

0 comments on commit 4c4d2dc

Please sign in to comment.