Fix issue with sorting environment variables in StackForm.php

This commit is contained in:
Andras Bacsai 2024-04-17 12:47:57 +02:00
parent 4ab3f41665
commit 0a3c20b08a

View File

@ -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)
{