Create package form missing "Include all child nodes" label by… (#6766)

This commit is contained in:
Poornima Nayar
2019-10-29 20:30:09 +00:00
committed by Sebastiaan Janssen
parent 227a0ec0d8
commit 6c13e4a762

View File

@@ -53,8 +53,9 @@
vm.loading = false;
});
localizationService.localize("general_create").then(function (value) {
vm.labels.button = value;
localizationService.localizeMany(["general_create", "packager_includeAllChildNodes"]).then(function (values) {
vm.labels.button = values[0];
vm.labels.includeAllChildNodes = values[1];
});
} else {
// Load package
@@ -77,11 +78,11 @@
});
localizationService.localizeMany(["buttons_save", "packager_includeAllChildNodes"]).then(function (values) {
vm.labels.button = values[0];
vm.labels.includeAllChildNodes = values[1];
});
}
}