Skip to content
Snippets Groups Projects
Commit 7c7407e4 authored by Ted Bowman's avatar Ted Bowman
Browse files

change row keys

parent 052cc204
No related branches found
No related merge requests found
......@@ -217,10 +217,10 @@ class UpdaterForm extends FormBase {
// Create an entry for this project.
$rows = [];
if ($installed_minor_release) {
$rows[1] = $this->getReleaseRow($installed_minor_release, $project['title']);
$rows['drupal-installed-minor'] = $this->getReleaseRow($installed_minor_release, $project['title']);
}
if ($next_minor_release) {
$rows[2] = $this->getReleaseRow($next_minor_release, $project['title']);
$rows['drupal-next-minor'] = $this->getReleaseRow($next_minor_release, $project['title']);
}
$form['projects'] = [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment