Skip to content

Commit

Permalink
fix(SearchOption): change type for IP and MAC
Browse files Browse the repository at this point in the history
  • Loading branch information
stonebuzz authored and trasher committed Dec 12, 2023
1 parent 40faf81 commit 1b677a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/RefusedEquipment.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public function rawSearchOptions()
'table' => $this->getTable(),
'field' => 'ip',
'name' => __('IP'),
'datatype' => 'string',
'datatype' => 'text',
'massiveaction' => false,
];

Expand All @@ -124,7 +124,7 @@ public function rawSearchOptions()
'table' => $this->getTable(),
'field' => 'mac',
'name' => __('MAC'),
'datatype' => 'string',
'datatype' => 'text',
'massiveaction' => false,
];

Expand Down

0 comments on commit 1b677a0

Please sign in to comment.