Commit 6769e00e674be43ffa810c42880b8e8110636c56

Authored by Benjamin Renard
1 parent 229c9223

Do not automatically fill yTitle with name for MyData parameters (#5961)

Showing 1 changed file with 0 additions and 2 deletions   Show diff stats
js/app/views/MyDataUI.js
... ... @@ -71,7 +71,6 @@ Ext.define('amdaUI.MyDataUI', {
71 71 //keep old name and mask if they exist
72 72 if (this.object.get('format') == 'vot')
73 73 {
74   - res.info.ytitle = res.info.name;
75 74 if ((res.info.id === this.object.get('realvar'))) {
76 75 if (this.object.get('realvar') != this.object.get('name')) {
77 76 res.info.name = this.object.get('name');
... ... @@ -91,7 +90,6 @@ Ext.define('amdaUI.MyDataUI', {
91 90 res.info.mask = this.object.get('mask');
92 91 }
93 92 }
94   - res.info.ytitle = res.info.name;
95 93 }
96 94  
97 95 form.setValues(res.info);
... ...