Power management default sort order is power usage in descending order

This commit is contained in:
Cmdr McDonald
2017-02-22 10:44:56 +00:00
parent 069959dabb
commit a5df542aa2
2 changed files with 5 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
#2.2.19
* Power management panel now displays modules in descending order of power usage by default
#2.2.18
* Change methodology for calculating explorer role; can result in lighter builds
* Tidy up layout for module selection and lay everything out in a consistent best-to-worst for both class and grade

View File

@@ -34,8 +34,8 @@ export default class PowerManagement extends TranslatedComponent {
this._sort = this._sort.bind(this);
this.state = {
predicate: 'n',
desc: true,
predicate: 'pwr',
desc: false,
width: 0
};
}