Skip to content

Commit

Permalink
Fix issue with sorting environment variables in StackForm.php
Browse files Browse the repository at this point in the history
  • Loading branch information
andrasbacsai committed Apr 17, 2024
1 parent 4ab3f41 commit 0a3c20b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Livewire/Project/Service/StackForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function mount()
$this->validationAttributes["fields.$key.value"] = $fieldKey;
}
}
$this->fields = $this->fields->sort();
$this->fields = $this->fields->sortDesc();
}
public function saveCompose($raw)
{
Expand Down

0 comments on commit 0a3c20b

Please sign in to comment.