fix references to commands after migrating to internal pybambu module
This commit is contained in:
jneilliii
2024-10-28 13:17:53 -04:00
parent 14af93b1d0
commit eaa0ed94c0
8 changed files with 25 additions and 10 deletions

View File

@ -18,6 +18,8 @@ $(function () {
self.use_ams = true;
self.ams_mapping = ko.observableArray([]);
self.job_info = ko.observable();
self.ams_mapping_computed = function(){
var output_list = [];
var index = 0;
@ -92,6 +94,10 @@ $(function () {
self.listHelper.updateItems(data.files);
self.listHelper.resetPage();
}
if (data.job_info !== undefined) {
self.job_info(data.job_info);
}
};
self.onBeforeBinding = function () {