mirror of
https://github.com/WebTools-NG/WebTools-NG
synced 2024-11-23 03:23:05 +00:00
Merge pull request #221 from WebTools-NG/#219-ET-Custom-Lever-only-show-fields-when-editing-a-level
Fixed #219
This commit is contained in:
commit
0bb503de5a
2 changed files with 7 additions and 4 deletions
|
@ -7,6 +7,7 @@
|
|||
* [#213 AutoUpdate Notification Ignore](https://github.com/WebTools-NG/WebTools-NG/issues/213)
|
||||
* [#216 PMS Module and check boxes](https://github.com/WebTools-NG/WebTools-NG/issues/216)
|
||||
* [#186 After creating a custom level, I need to select this custom level in the drop down](https://github.com/WebTools-NG/WebTools-NG/issues/186)
|
||||
* [#219 ET Custom Lever only show fields when editing a level](https://github.com/WebTools-NG/WebTools-NG/issues/219)
|
||||
|
||||
## V0.1.11
|
||||
|
||||
|
|
|
@ -220,8 +220,7 @@
|
|||
options.push(option);
|
||||
});
|
||||
item['options']=options;
|
||||
this.optionsLevels = options;
|
||||
this.fieldList = et.getAllFields( {libType: this.selMediaType});
|
||||
this.optionsLevels = options;
|
||||
},
|
||||
addNewLevel(){
|
||||
// Hide Modal box
|
||||
|
@ -296,7 +295,9 @@
|
|||
// Triggers when lib type is changed
|
||||
this.genExportLevels();
|
||||
this.btnDeleteEnabled = false;
|
||||
this.resultList = [];
|
||||
this.resultList = [];
|
||||
this.selCustLevel = "";
|
||||
this.fieldList = [];
|
||||
},
|
||||
deleteCustomLevel() {
|
||||
log.info(`User confirmed to delete custom level: ${this.selCustLevel}`);
|
||||
|
@ -341,7 +342,8 @@
|
|||
}
|
||||
this.resultList = [];
|
||||
await this.genExportLevels();
|
||||
this.getCustomLevel();
|
||||
this.getCustomLevel();
|
||||
this.fieldList = et.getAllFields( {libType: this.selMediaType});
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue