Skip to content

Commit

Permalink
Fix: Sort not fully removed
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchBlood committed Jan 21, 2020
1 parent 1c95d03 commit 6af2fc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/forms/SettingsForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class SettingsForm extends \yii\base\Model
public function rules()
{
return [
[['client','slot', 'sort'], 'safe'],
[['client', 'slot','sort'], 'required'],
[['client','slot'], 'safe'],
[['client', 'slot'], 'required'],
[['client'], 'string', 'max' => 255],
[['slot'], 'string', 'max' => 255],
];
Expand Down

0 comments on commit 6af2fc1

Please sign in to comment.