ÂPMCORE-3324: Column Settings and Task Action Ellipses Icons should be aligned PMCORE_3.7.0 build

This commit is contained in:
Rodrigo Quelca
2021-09-17 22:02:18 +00:00
parent ae652084a3
commit c109c6e18c
3 changed files with 13 additions and 7 deletions

View File

@@ -207,8 +207,11 @@ export default {
* @returns
*/
formatColumnSettings(columns) {
return _.map(_.pick(this.headings, columns), (value, key) => {
return { value, key }
return _.map(columns, (value, key) => {
if (this.headings[value]) {
return { value: this.headings[value], key: value };
}
return { value, key: value }
});
}
}